SSH Access
SSH provides secure command-line access to your hosting environment for file management, deployments, maintenance tasks, and developer workflows.
Enabling SSH
- Log in to your Hosting Panel.
- Navigate to Settings → SSH Access.
- Enable SSH for the relevant account or website user if your plan includes it.
- Generate or add your SSH credentials when required.
- Store your credentials securely and do not share them.
Connecting via Terminal
Windows
Use PowerShell, Windows Terminal, or a client such as PuTTY.
ssh username@hostname
macOS or Linux
Open Terminal and run:
ssh username@hostname
Using an SSH key
If you use a private key, restrict its permissions and connect like this:
ssh -i path/to/your_key username@hostname
Good practice
- Use SSH keys instead of passwords whenever possible.
- Limit access to the specific people who need it.
- Test commands carefully, especially on live websites.
- Use staging first when a change could affect visitors or email delivery.