Last active
November 11, 2023 21:19
-
-
Save antoine-pous/76dbaab6fd7d2c308482 to your computer and use it in GitHub Desktop.
Archiving all your databases easily
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
#!/bin/bash | |
# ---------------------------------------------------------------------------- | |
# "THE BEER-WARE LICENSE" (Revision 42): | |
# <[email protected]> wrote this file. As long as you retain this notice you | |
# can do whatever you want with this stuff. If we meet some day, and you think | |
# this stuff is worth it, you can buy me a beer in return Antoine "Gecko" Pous | |
# ---------------------------------------------------------------------------- | |
USER=<sql_username> | |
PASSWORD=<sql_password> | |
OUTPUT=/path/to/destination | |
TMP=/path/to/temporary/directory | |
# Go to temporary directory | |
echo "Go to $TMP" | |
cd $TMP | |
# Fetch all databases | |
echo "Fetch all databases" | |
databases=`mysql --user=$USER --password=$PASSWORD -e "SHOW DATABASES;" | tr -d "| " | grep -v Database` | |
# Dump each database into `$TMP/YYYYmmdd.dbname.sql` | |
for db in $databases; do | |
if [[ "$db" != "information_schema" ]] && [[ "$db" != _* ]] ; then | |
echo "Dumping database: $db" | |
mysqldump --single-transaction --force --opt --user=$USER --password=$PASSWORD --databases $db > $TMP/`date +%Y%m%d`.$db.sql | |
echo "Done!" | |
fi | |
done | |
# Create archive with all dump into $OUTPUT | |
echo "Archiving all dump" | |
tar -zcvf $OUTPUT/`date +%Y%m%d`.tar.gz *.sql | |
echo "Done!" | |
# Clear temporary dump | |
echo "Cleaning temporary files" | |
rm "$TMP/*" > /dev/null 2>&1 | |
echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment