How to Change VDS Server OS: Step-by-Step Reinstall Guide
Step-by-step guide to changing your VDS server OS via REXE panel: backup tips, supported Linux distributions and Windows Server versions explained.
Table of Contents
Introduction
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.
Available Operating Systems
Linux Distributions
| 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 |
Windows Server
| OS | Versions | Use Case |
|---|---|---|
| Windows Server | 2019, 2022 | .NET apps, RDP, Active Directory |
Before Changing OS
1. Back Up Your Data
# 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_* ./
2. Note Your Configuration
Document the following before reinstalling:
- Installed software and versions
- Firewall rules (iptables/ufw)
- Cron jobs (
crontab -l) - Custom configurations
- Path Panel rules (these are preserved)
Path Panel firewall rules are NOT affected by OS changes. Your DDoS protection rules remain intact.
OS Change Steps
- Log in to the REXE panel (my.rexe.tr)
- Navigate to My Services → Select your server
- Click Reinstall / Change OS
- Select your desired operating system and version
- Confirm the operation
- Wait for the installation to complete (usually 5-15 minutes)
- New credentials will be sent to your email
The server will be inaccessible during the OS installation process. This typically takes 5-15 minutes.
After OS Change
1. Update the System
# Ubuntu/Debian
sudo apt update && sudo apt upgrade -y
# CentOS/Rocky/Alma
sudo dnf update -y
2. Restore Your Data
# 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 /
3. Reconfigure Services
Reinstall and configure your applications, web server, database, and other services as needed.
Frequently Asked Questions
Does OS change affect my IP address?
No, your IP address remains the same after an OS change.
Are Path Panel rules preserved?
Yes, Path Panel firewall rules are independent of the server OS and remain intact.
Can I switch between Linux and Windows?
Yes, you can switch between Linux and Windows Server at any time through the panel.
Related Articles
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.
How to Connect to Windows VDS via RDP: Complete Guide
Complete guide to connecting to Windows Server VDS via Remote Desktop (RDP): setup steps, NLA security, Path Panel firewall rule, and troubleshooting tips.
Linux VDS Server Monitoring: CPU, RAM, Disk and Network
Complete guide to monitoring Linux VDS server resources: htop, free, df, iostat commands, network monitoring tools, and automated alert scripts.