Support Center

Knowledge Base

Back to KB
CategoryVPS
Last UpdatedJuly 19, 2026

How to Connect to Your VPS via SSH

Step-by-step instructions on accessing your Linux Virtual Private Server (VPS) securely using SSH terminal client.

Before connecting, ensure you have:

  1. Your server's IP address.
  2. The root username (usually root).
  3. The root password (or your private SSH key if key-based auth was set up).

Connecting from Windows (using Command Prompt / PowerShell)

Windows 10/11 has a built-in SSH client:

  1. Open Command Prompt or PowerShell.
  2. Type the following command and press Enter:
    ssh root@your_server_ip
    
  3. You will be prompted with a security warning. Type yes and hit Enter to add the server to your known hosts.
  4. Paste or type your root password when prompted (characters will not show as you type for security).

Connecting from macOS / Linux Terminal

  1. Open the Terminal app.
  2. Run:
    ssh root@your_server_ip
    
  3. Enter your password to authenticate.