Kategooriad

Connecting to Your VPS via SSH

0 Kas see vastus oli kasulik?

Overview

SSH (Secure Shell) is the standard method for connecting to and managing your Linux VPS. This guide covers how to connect from Windows, macOS, and Linux.

Before You Begin

You will need:

  • Your server IP address (found in the Control Panel)
  • Your root password (provided at setup or after OS reinstall)
  • An SSH client (built into macOS/Linux, or PuTTY for Windows)

Connecting from macOS or Linux

Open Terminal and run:

ssh root@YOUR_SERVER_IP

Replace YOUR_SERVER_IP with your actual server IP address. When prompted, enter your root password.

Example:

ssh root@203.0.113.50

Connecting from Windows 10/11

Windows 10 and 11 include a built-in SSH client. Open Command Prompt or PowerShell and run:

ssh root@YOUR_SERVER_IP

Connecting from Windows (PuTTY)

If you prefer a graphical client:

  1. Download PuTTY
  2. Open PuTTY and enter your server IP in the Host Name field
  3. Ensure Port is set to 22 and Connection type is SSH
  4. Click Open
  5. Log in as root with your password

First-Time Connection Warning

On your first connection, you will see a warning about the server fingerprint. This is normal — type yes to continue and save the fingerprint.

Troubleshooting

IssueSolution
Connection refusedCheck that your VPS is running in the Control Panel
Connection timed outVerify the IP address; check firewall settings
Permission deniedVerify you are using the correct password

Next Steps

After connecting, we recommend setting up SSH key authentication for improved security.

Kas see vastus oli kasulik?