SSH is the normal way to manage a Linux VPS. It gives you a terminal on the server so you can install software, edit files, check logs, and run game server commands.

You need the VPS IP address, SSH username, and either the password or an SSH key.

Connect from Linux or macOS

  1. Open Terminal.
  2. Run the SSH command with your VPS IP address:
ssh root@your-vps-ip

Replace your-vps-ip with the real VPS IP address.

If your VPS uses a different username, replace root with that username.

Connect from Windows

On modern Windows, open Windows Terminal or PowerShell and use the same SSH command:

ssh root@your-vps-ip

You can also use PuTTY if you prefer a separate SSH client.

If SSH does not connect

  • Check the VPS is powered on.
  • Check you are using the public VPS IP address.
  • Check the username is correct for the operating system image.
  • Confirm port 22 is open unless you changed the SSH port.
  • Use the VPS console if a firewall rule or failed boot is blocking SSH.

If you are using SSH keys, add the key first: How to add an SSH key to your VPS.

  • 0 Корисниците го најдоа ова како корисно
Дали Ви помогна овој одговор?

Понудени резултати

How to update packages on a Linux VPS

Keeping packages updated helps patch security issues and keeps server tools compatible. Run...

How to create a sudo user on a Linux VPS

A sudo user lets you manage a Linux VPS without logging in as root for every task. This is safer...

How to secure SSH on a Linux VPS

SSH is the main way to manage a Linux VPS, so it should be secured before the server is used for...

How to check disk usage on a Linux VPS

Disk usage issues can stop updates, backups, logs, databases, and game saves from writing...

How to check CPU and RAM usage on a Linux VPS

High CPU or RAM usage can cause lag, slow command responses, failed updates, or game servers...