Last active
August 26, 2019 22:04
-
-
Save brianredbeard/8321479 to your computer and use it in GitHub Desktop.
Revisions
-
brianredbeard revised this gist
Jan 8, 2014 . 1 changed file with 2 additions and 0 deletions.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 @@ -1,5 +1,7 @@ #!/bin/bash # Simple script to dump the contents of a database into separate files in the directory "/backups/" # Symlink into /etc/cron.daily/ or add to crontab # Originally from: https://gist.github.com/brianredbeard # /usr/local/scripts/db_dump -
brianredbeard created this gist
Jan 8, 2014 .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,10 @@ #!/bin/bash # Simple script to dump the contents of a database into separate files in the directory "/backups/" # /usr/local/scripts/db_dump #mysqldump -x --add-drop-table --all-databases > /backups/mysqldb-`date +%F-%I%p`.sql /usr/bin/mysql --defaults-extra-file=/root/.my.cnf -e 'show databases' | /bin/awk '{print $1}' | /bin/grep -v "^Database$" | /usr/bin/xargs -i{} /usr/bin/mysqldump --defaults-extra-file=/root/.my.cnf --opt -Q -r /backups/{}-`date +%F-%I%p`.sql {} gzip -q /backups/*.sql