[SATLUG] backup recommendations

Samuel Leon leon36 at gmail.com
Fri Mar 2 15:22:25 CST 2007



Hector Bojorquez wrote:
> What exactly are the procedures for backing up an entire web server, 
> in case
> of total failure?
> System--- Fedora 5


I run this script from my desktop which downloads everything from my 
webserver onto a folder on my desktop:



#!/bin/bash

rsync -acv --delete --stats --progress --rsh='ssh' root at 10.36.38.100:/ 
/home/storage/BackUp/Serverback/webserver --exclude="/proc/" 
--exclude="/lost+found/" --exclude="/mnt/" --exclude="/dev/"



It downloads the root of 10.36.38.100 (10.36.38.100:/) to a folder on my 
computer (/home/storage/BackUp/Serverback/webserver)


Sam


More information about the SATLUG mailing list