biolocal:FShomesRecover

From Wiki CEINGE

Revision as of 12:54, 18 February 2008 by Gianluca (Talk | contribs)
Jump to: navigation, search

The following procedure provides a smooth way to recover the homes of the file server, syncronizing the maildir folder before the whole home directory. This way, it is possible to switch the mailserver on before the entire sync is completed.


Connect to the File Server 143.225.151.27

Recover the disk and make the base directory for the ceinge homes:

mkdir /data01/FS /data01/FS/ceinge /data01/FS/ceinge/Home

Connect to the backup server 143.225.151.42

Make the home dirs without descending into them (-pogdv options)

rsync -pogdv -e ssh /media/usbdisk1/FSceinge/ceinge/Home/ root@143.225.151.27:/data01/FS/ceinge/Home/

Start syncronizing the login folder (contains Maildir)

for i in `ls`; \
do \
echo $i; \
rsync -avz -e ssh --exclude=*archive* $i/login/ root@143.225.151.27:/data01/FS/ceinge/Home/$i/login/; \
done;

Start the mail server:

/etc/init.d/Mailscanner start

Recover the archive boxes:

for i in `ls`; \
do \
echo $i; \
rsync -avz -e ssh $i/login/Maildir/archive/ root@143.225.151.27:/data01/FS/ceinge/Home/$i/login/Maildir/archive/; \
done;

Then syncronize the archive

Syncronize the whole home directories without the login directory (already done in the previous step)

for i in `ls`; \
do \
rsync -avz -e ssh --exclude=login* $i/ root@143.225.151.27:/data01/FS/ceinge/Home/$i/; \
done;