
Transfer cPanel accounts between servers with minimum downtime
The account migration is always annoying process because a System Administrator needs to do a lots of things fast and without errors.
This post provides the instructions about how to migrate the cPanel accounts between servers with minimum downtime, which is very important if you are running online business. The migration described in this post allows to switch the accounts between servers in less than 1 hour.
Login via SSH to the old server and run below code for each username account what you are going to backup:
The screen output will look similar to above screenshot. cPanel will place the backup archives to /home folder.
After that, transfer all backups to new server using scp command:
scp /home/cpmove-* root@ip.adress.new.srv:/home/Now, it is time to login to new server via SSH. On this server using another cPanel script, restore the backups for each username:
/scripts/restorepkg usernameThis command will restore the account from the backup and will create the account on new server.
Finally, login to old server's WHM, edit DNS zone for moved accounts and change the IP and nameservers. For minimum downtime I recommend to follow the tip Redirect WWW traffic while nameservers details are propagating
If you have multiple accounts to transfer (over 5), it is possible that typing backup/restore commands for each username would be annoying. To automatize backup/restore task, use this script:
#!/bin/bash accounts="account1 account2 account3" for account in $accounts do /scripts/pkgacct $account; doneThe script automatically backups the accounts specified in accounts variable. Note that the script could be used for account restoring: just replace /scripts/pkgacct with /scripts/restorepkg.
Related Posts:- Free control panels for Linux hosting
- [mysql] backup/restore a single table
- Redirect WWW traffic while nameservers details are propagating
- Server Hardening with ConfigServer Security & Firewall (CSF)
- Several ways to reset MySQL root password
- SSH servers for Windows
- [tar] Removing leading '/' from member names