How to restore all data from old drive to a new drive on a cpanel server

You basically ssh to server as root and look for your old/original drive via command

fdisk -l

Then say you find your data on /dev/sdb3 then you just type

mkdir /sdb3

mount /dev/sdb3 /sdb3

 

 

rsync -vrplogDtH /sdb3/usr/local/apache/conf /usr/local/apache

rsync -vrplogDtH /sdb3/var/named /var

rsync -vrplogDtH /sdb3/home/* /home

rsync -vrplogDtH /sdb3/usr/local/cpanel /usr/local

rsync -vrplogDtH /sdb3/var/lib/mysql /var/lib

rsync -vrplogDtH /sdb3/var/cpanel /var

rsync -vrplogDtH /sdb3/usr/share/ssl /usr/share

rsync -vrplogDtH /sdb3/var/ssl /var

rsync -vrplogDtH /sdb3/usr/local/cpanel/3rdparty/mailman /usr/local/cpanel/3rdparty

rsync -vrplogDtH /sdb3/var/log/bandwidth /var/log

rsync -vrplogDtH /sdb3/usr/local/frontpage /usr/local

rsync -vrplogDtH /sdb3/var/spool/cron /var/spool

rsync -vrplogDtH /sdb3/root/.my.cnf /root

rsync -vrplogDtH /sdb3/etc/httpd/conf/httpd.conf /etc/httpd/conf

rsync -vrplogDtH /sdb3/etc/sysconfig/network /etc/sysconfig

Now copy files from /etc:

cd /sdb3/etc

rsync -vrplogDtH secondarymx domainalias valiases vfilters exim* proftpd* pure-ftpd* passwd* group* *domain* *named* wwwacct.conf cpupdate.conf quota.conf shadow* *rndc* ips* ipaddrpool* ssl hosts /etc

Then finally run following to fix any issues that might happen.

/scripts/upcp

/scripts/updatenow

/scripts/sysup

/scripts/fixeverything

 

 

Was this answer helpful?

 Print this Article

Also Read

How to re-install Centos yourself remotely

NOTE: This is only for Dedicated Servers. All VPS, go to client area.Assuming you currently have...

How to update cpanel license key

First, ssh to your server as root and just type /usr/local/cpanel/cpkeyclt

How to compile kernel with RocketRaid 2640 RAID Cards

1. yum install kernel update you want2. wget...

How to set date/time permanently on Centos/RH/Fedora

First you need to ssh to the server and be root and then do these step by step: 1. Set the...

How to change cPanel password from command line?

cPanel password of a domain can be changed from command line using cPanel script. Given below are...