VPS & RDPUpdated 2026-07-01
Connecting to your VPS via SSH
Reach your Linux VPS with SSH and secure it.
Connecting to your VPS
After deployment you receive an IP address, username and password by email and in the panel.
From a terminal, connect with:
terminal
ssh root@YOUR_SERVER_IP
Then update the system:
terminal
apt update && apt upgrade -y
Make it secure
- Add an SSH key and disable password login.
- Create a non-root user for day-to-day work.
- Enable a firewall and only open the ports you use.
See "Securing your VPS" for the full checklist.