How do I connect to my server over SSH? Print

  • 0

Use an SSH client with the details from your VPS welcome email (IP address, username, and password or key).

  1. On Linux or macOS, open a terminal and run ssh root@your-server-ip.
  2. On Windows, use a client like PuTTY or the built-in ssh command in PowerShell.
  3. Enter your password when prompted, or point the client at your private key file.

For better security, set up SSH key authentication with ssh-keygen, copy the key using ssh-copy-id user@your-server-ip, then disable password login in /etc/ssh/sshd_config. If SSH refuses to connect, check the server is powered on in the VPS control panel and that no firewall rule is blocking port 22. Still stuck? Open a ticket.


Was this answer helpful?

« Back