Connect securely to your server using SSH from any terminal.
- Retrieve your server's IP and root password from the Client Portal email or dashboard.
- On Linux/Mac: Open Terminal. On Windows: Use PuTTY or PowerShell.
- Run:
ssh root@your-server-ip - Enter the root password when prompted (it won't show as you type).
- Immediately change the password:
passwd - For enhanced security, set up SSH key authentication:
ssh-keygenon your local machine, thenssh-copy-id root@your-server-ip.
Tip: Edit /etc/ssh/sshd_config to disable password auth and restart SSH: systemctl restart ssh.