User Tools

Site Tools


rsync-backup

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
rsync-backup [2012/12/21 16:05]
85.218.109.130 [automated backup]
rsync-backup [2014/01/03 10:08] (current)
zoza [manual backup]
Line 23: Line 23:
 <​code>​rsync -azvv /​var/​lib/​mysql /​somewhere</​code>​ <​code>​rsync -azvv /​var/​lib/​mysql /​somewhere</​code>​
  
 + - backup the database(s)
 +
 +<​code>​mysqldump -u root -ptmppassword --all-databases > /​tmp/​all-database.sql</​code>​
 +source {{http://​www.thegeekstuff.com/​2008/​09/​backup-and-restore-mysql-database-using-mysqldump/​|here}}
 ====== automated backup ====== ====== automated backup ======
  
-backup the server to an external disk, once a month+(as sudo) run crontab: 
 + 
 +<​code>​crontab -e</​code>​ 
 + 
 +edit the file, so that cronjob will run the command each 1st of the month, at 20:45 
 + 
 +<​code>​45 20 1 * *  rsync -azvv  --exclude /var/log /etc /home /opt /var  /​srv/​mis_duplicate/​backingup</​code>​ 
 + 
 +and backup the server ​(only folders /etc, /home, /opt, /var) to an external disk
  
-<code>rsync +cron format: http://​www.nncron.ru/​help/​EN/​working/​cron-format.htm
  
 more:  more: 
  
 http://​rbgeek.wordpress.com/​2012/​05/​22/​automatic-backup-from-ubuntu-server-with-rsync/​ http://​rbgeek.wordpress.com/​2012/​05/​22/​automatic-backup-from-ubuntu-server-with-rsync/​
rsync-backup.1356105937.txt.gz · Last modified: 2012/12/21 16:05 by 85.218.109.130