Skip to content

Instantly share code, notes, and snippets.

@djo
Created February 25, 2013 09:32
Show Gist options
  • Save djo/5028732 to your computer and use it in GitHub Desktop.
Save djo/5028732 to your computer and use it in GitHub Desktop.
Backup DB scripts
current_date=`date +%Y-%m-%d-%H:%M`
file_name="db.$current_date.sql.gz"
file_path="/mnt/backup/$file_name"
mysqldump --single-transaction --quick -u*** -p*** DB | gzip -c > $file_name
echo `ls -la $file_path` | mail -s "[backup] DB" [email protected]
cd /mnt/backup
file=$(ls |tail -n 1)
log=$(s3cmd put -sv backup_bucket:mysql/$file $file 2>&1)
echo $log | mail -s "[s3] DB" [email protected]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment