Created
January 19, 2012 04:52
-
-
Save deltaepsilon/1638037 to your computer and use it in GitHub Desktop.
Backup MySQL to s3 using Tim Kay's AWS CLI tool
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#You need Tim Kay's AWS Swiss Army Knife: https://github.com/timkay/aws | |
echo "deleting gzips" | |
rm *.gz | |
echo "archiving isly_wordpress" | |
mysqldump --add-drop-table -u USERNAME -pPASSWORD isly_wordpress | gzip > isly_wordpress.sql.gz | |
echo "archiving calligraphy_wordpress" | |
mysqldump --add-drop-table -u USERNAME -pPASSWORD calligraphy_wordpress | gzip > calligraphy_wordpress.sql.gz | |
echo "archiving fashion_wordpress" | |
mysqldump --add-drop-table -u USERNAME -pPASSWORD fashion_wordpress | gzip > fashion_wordpress.sql.gz | |
echo "exporting gzips to s3" | |
echo "beginning backup..." >> log | |
date >> log | |
for f in *.sql.gz | |
do | |
echo "sending $f..." >> log | |
aws put --progress bucket.name.com/ $f | |
done | |
echo "Backup complete" >> log | |
date >> log | |
echo "" >> log | |
mail [email protected] < log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This usually needs to be run with sudo. It's something like "sudo sh s3backup", where s3backup is the name of the file where you saved this text.