VPS & Cloud Infrastructure Management
This guide covers how to connect to and manage Linux Virtual Private Servers (Ubuntu / Debian) on your hosting account.
1. Connecting via SSH (Termius, PuTTY, or Terminal)
To connect to your server instance using SSH key authentication:
- Copy your server's public IP address from your management panel.
- Open your SSH client (e.g., Termius or terminal).
- Connect using
rootor your custom sudo username: bash ssh root@your_vps_ip -p 22
2. Managing Firewall Rules (UFW)
Ensure basic port security using Uncomplicated Firewall:
- Allow SSH port:
ufw allow 22/tcp - Allow Web traffic:
ufw allow 80/tcpandufw allow 443/tcp - Enable firewall:
ufw enable