Periodic backup of database

From Notes_Wiki
Revision as of 00:49, 24 November 2012 by Saurabh (talk | contribs) (Created page with "=Periodic backup of database= Periodic backup of database can be taken by using scripts like: <pre> #!/bin/sh BACKUP_DIR=<backup_dir>/$(date +%Y-%m-%d) mkdir -p $BACKUP_DIR m...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Periodic backup of database

Periodic backup of database can be taken by using scripts like:

#!/bin/sh
BACKUP_DIR=<backup_dir>/$(date +%Y-%m-%d)
mkdir -p $BACKUP_DIR
mysqldump -u <user-name> -p<password> <database-name> > $BACKUP_DIR/`date +%Y-%m-%d\:%H-%M-%S`.sql

exit 0

Replace: <backup_dir> appropriately.

This script can be put in '/etc/cron.hourly' or '/etc/cron.daily' or '/etc/cron.weekly' or '/etc/cron.monthly' based on frequency of backups desired.

  • Make sure to do 'chmod +x' on script so that it is executable.
  • If you do not want to be bothered by cron output of above script then add '>/dev/null 2>&1' at end of all commands