Skip to main content

SSH Access

SSH provides secure command-line access to your hosting environment for file management, deployments, maintenance tasks, and developer workflows.

Enabling SSH

  1. Log in to your Hosting Panel.
  2. Open Websites and select the website.
  3. Go to AdvancedDeveloper tools.
  4. Find the SSH connection details and add or generate credentials as required.
  5. Store your credentials securely and do not share them.

If SSH details are not displayed, the feature is not enabled for your hosting package. Contact support if you need it.

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.