To connect to your Virtual Private Server (VPS) or dedicated server, you’ll use SSH (Secure Shell). You can do this using a terminal, PuTTY, or Termius. Follow these simple steps to get started.
Access Your VPS or Dedicated Server Using a Terminal (SSH)
1. Open your terminal application on your local computer.
2. Type the following command, replacing
ssh root@your_server_ip
For example, if your server’s IP address is
ssh root@192.168.1.100
3. Press Enter. You’ll be asked to enter the password for the root user (or your specific username). Type the password and press Enter. Note: The password won’t be visible as you type.
4. If this is your first time connecting, you might see a message asking if you trust the server. Check that the fingerprint matches your server’s fingerprint, and type
5. Once you’ve entered the correct password, you’ll be logged in to your server and can start managing it from the command line.
Access Your VPS or Dedicated Server Using PuTTY
1. Open PuTTY on your local computer.
2. In the “Host Name (or IP address)” field, enter the IP address of your server. For example:
192.168.1.100
3. Ensure that the “Connection Type” is set to SSH and the port is set to 22.
4. Click the “Open” button to start the connection.
5. A terminal window will appear. You may see a security alert about the host key. Verify that the fingerprint matches your server’s fingerprint and click “Yes” to proceed.
6. You’ll be prompted to enter your username. Type
7. Enter the password when prompted. The password will not be shown as you type. Press Enter once you’ve entered it correctly.
8. If the credentials are correct, you’ll be logged in to your server via PuTTY, allowing you to manage it through the terminal window.
Access Your VPS or Dedicated Server Using Termius
1. Open Termius on your local computer or mobile device.
2. Click the “+” button or “New Host” to create a new connection.
3. Enter the following details:
- Label: A name for your connection (e.g., “My VPS” or “My Dedicated Server”).
- Hostname: Enter the IP address of your server. For example:
192.168.1.100
4. Click “Save” or “Connect” to initiate the connection.
5. Termius will establish the SSH connection and you’ll be logged in to your server, where you can manage it from the terminal interface.
Important Tips
To keep your VPS or dedicated server secure:
- Use strong passwords.
- Consider setting up SSH key authentication instead of using passwords.
- Regularly update your system and software.
If you encounter issues logging in or have forgotten your password, contact your server provider for assistance.