How to Connect to Your VDS Server via SSH (Complete Guide)
Step-by-step SSH connection guide for Linux VDS: PuTTY, Terminal, key-based authentication, Path Panel firewall rules, and security best practices.
Step-by-step guide to changing your VDS server OS via REXE panel: backup tips, supported Linux distributions and Windows Server versions explained.
REXE Technology allows you to change your VDS server's operating system through the management panel. This process completely formats the server and installs a fresh OS. This guide explains the OS change process step by step.
Changing the operating system will erase ALL data on the server. Make sure to back up your important data before proceeding.
| OS | Versions | Use Case |
|---|---|---|
| Ubuntu | 20.04, 22.04, 24.04 | Web servers, general purpose |
| Debian | 11, 12 | Stable servers, minimal setup |
| CentOS | 7, Stream 8, Stream 9 | Enterprise applications |
| Rocky Linux | 8, 9 | CentOS alternative |
| AlmaLinux | 8, 9 | CentOS alternative |
| OS | Versions | Use Case |
|---|---|---|
| Windows Server | 2019, 2022 | .NET apps, RDP, Active Directory |
# Back up databases
mysqldump -u root -p --all-databases > backup_db.sql
# Back up web files
tar -czf backup_web.tar.gz /var/www/
# Download backups to your local machine
scp root@SERVER_IP:/root/backup_* ./
Document the following before reinstalling:
crontab -l)Path Panel firewall rules are NOT affected by OS changes. Your DDoS protection rules remain intact.
The server will be inaccessible during the OS installation process. This typically takes 5-15 minutes.
# Ubuntu/Debian
sudo apt update && sudo apt upgrade -y
# CentOS/Rocky/Alma
sudo dnf update -y
# Upload backups
scp backup_* root@SERVER_IP:/root/
# Restore database
mysql -u root -p < backup_db.sql
# Restore web files
tar -xzf backup_web.tar.gz -C /
Reinstall and configure your applications, web server, database, and other services as needed.
No, your IP address remains the same after an OS change.
Yes, Path Panel firewall rules are independent of the server OS and remain intact.
Yes, you can switch between Linux and Windows Server at any time through the panel.
Yes, changing the operating system completely formats the server. Back up all important data before proceeding.
The installation process typically takes 5-15 minutes. New credentials are sent to your email after completion.
No, your IP address remains the same after an OS change. Path Panel firewall rules are also preserved and unaffected.
Step-by-step SSH connection guide for Linux VDS: PuTTY, Terminal, key-based authentication, Path Panel firewall rules, and security best practices.
Complete guide to connecting to Windows Server VDS via Remote Desktop (RDP): setup steps, NLA security, Path Panel firewall rule, and troubleshooting tips.
Complete guide to monitoring Linux VDS server resources: htop, free, df, iostat commands, network monitoring tools, and automated alert scripts.