Created
February 14, 2015 19:20
-
-
Save pushrax/c47efd7b4b704f99bfce to your computer and use it in GitHub Desktop.
Revisions
-
pushrax created this gist
Feb 14, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ #!/bin/bash DATE=`date +%Y-%m-%d.%H%M%S` echo "Starting MySQL dump for replication $DATE" mysqldump -u root -p --single-transaction --master-data --databases my_app --verbose | gzip -c > "mysql.master.$DATE.sql.gz" echo "Dump complete"