Introduction
SSH (Secure Shell) is the most common and secure method to connect to your VPS (Virtual Private Server). Using SSH, you can manage your server, install software, and configure settings remotely.
In this guide, we'll show you how to access your VPS using SSH from different devices and operating systems.
Requirements
- Your VPS IP address (sent to you in your welcome email)
- Your SSH username (usually root)
- Your SSH password (or private key if you use key authentication)
- An SSH client:
- Linux/macOS: Terminal is built-in.
- Windows: Use PuTTY or Windows Terminal (Windows 10+).
Accessing SSH on Linux or macOS
- Open your Terminal.
- Type the following command:
ssh root@your_server_ip
Example:
ssh root@192.0.2.123
- Accept the server’s fingerprint (first-time connection).
- Enter your password when prompted.
✅ You are now logged into your VPS!
Accessing SSH on Windows
Option 1: Using Windows Terminal (Windows 10/11)
- Open Windows Terminal.
- Type:
ssh root@your_server_ip
- Accept the fingerprint and enter your password.
✅ Done!
Option 2: Using PuTTY
- Download and install PuTTY.
- Open PuTTY.
- In the Host Name field, type:
root@your_server_ip
- Click Open.
- Accept the fingerprint if asked.
- Enter your password.
✅ You are connected to your server!
Tips for Secure SSH Access
- Change your root password after your first login.
- Use SSH keys for even more secure access.
- Close unused ports on your server’s firewall.
- Disable root login (optional) and create a normal user for daily operations.
Troubleshooting SSH Connection Issues
- Ensure your server is online and the IP address is correct.
- Make sure Port 22 (SSH) is open in your firewall.
- If using a private SSH key, verify you have the correct permissions (
chmod 600
for the key file). - Some ISPs block SSH ports — try from another network.
Need Help?
If you experience any issues accessing your VPS, our 24/7 Support Team is here to help.
Open a Support Ticket or contact us directly support@aumix.net.
Summary
SSH is the gateway to your VPS.
It’s secure, fast, and gives you full control of your server environment.
Always keep your SSH credentials safe and consider setting up SSH key authentication for extra security.