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

 

 

Je li Vam ovaj odgovor pomogao?

 Ispiši članak

Također pročitajte

How to reboot a unix server via telnet?

Using a telnet program like http://www.telnet98.com/ or SSH Client like putty (for windows),...

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...

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 hostname of a server

Simply ssh as root and type hostname s1.boxintense.com Then to make it permanent, modify this...

Why my drive is slow

First, check to make sure write cache is enabled. On Centos, you type hdparm -I /dev/sda Then...