Getting Started

SSH Access

How to connect to your VPS/VDS via SSH from Windows, Mac and Linux

SSH (Secure Shell) is the primary method to remotely access your server. Find access credentials in the activation email for your service.

Required Credentials

  • Server IP: visible in client panel or activation email
  • SSH Port: default is 22
  • User: usually root
  • Password: received via email (we recommend changing it immediately)

Connection from Linux / macOS

Open terminal and type:

ssh root@SERVER_IP

If SSH port is different from 22:

ssh -p PORT root@SERVER_IP

On first connection you'll be asked to accept server fingerprint: type yes and press Enter.


Connection from Windows

Option 1: Windows Terminal / PowerShell (Windows 10/11)

SSH is already included. Open PowerShell or Windows Terminal and use same command:

ssh root@SERVER_IP

Option 2: PuTTY

  1. Download PuTTY
  2. Enter server IP in Host Name field
  3. Verify port is 22 (or custom one)
  4. Click Open
  5. Accept fingerprint and enter credentials

Common Connection Errors

ErrorLikely CauseSolution
Connection refusedSSH not active or wrong portVerify port in panel
Connection timed outFirewall blocking portCheck firewall rules
Permission deniedWrong password or userVerify credentials
Host key verification failedIP reassigned or OS reinstalledDelete old key with ssh-keygen -R IP

If you can't access, use VNC/NoVNC Console from client panel to access server without SSH.

On this page