Skip to content

Instantly share code, notes, and snippets.

@boynoiz
Forked from andsens/dump.sh
Last active September 18, 2017 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boynoiz/9ba9609f3f3767d558411fcf7c665ed5 to your computer and use it in GitHub Desktop.
Save boynoiz/9ba9609f3f3767d558411fcf7c665ed5 to your computer and use it in GitHub Desktop.
Backup all MySQL databases into separate files
#!/bin/sh
## backup each mysql db into a different file, rather than one big file
## as with --all-databases. This will make restores easier.
## To backup a single database simply add the db name as a parameter (or multiple dbs)
## Putting the script in /var/backups/mysql seems sensible... on a debian machine that is
## Create the user and directories
# mkdir -p /var/backups/mysql/databases
# useradd --home-dir /var/backups/mysql --gid backup --no-create-home mysql-backup
## Remember to make the script executable, and unreadable by others
# chown -R mysql-backup:backup /var/backups/mysql
# chmod u=rwx,g=rx,o= /var/backups/mysql/dump.sh
## crontab entry - backup every night at 02:00
# sudo -u mysql-backup crontab -e
# 0 2 * * * /var/backups/mysql/dump.sh
## Create 'backup' mysql user
# CREATE USER 'backup'@'localhost' IDENTIFIED BY 's3cr3t';
# GRANT EVENT, LOCK TABLES, PROCESS, REFERENCES, SELECT, SHOW DATABASES, SHOW VIEW, TRIGGER ON *.* TO 'backup'@'localhost' ;
HOST="127.0.0.1"
USER="backup"
PASSWORD="s3cr3t"
OUTPUTDIR="/home/backup/"$(date +"%F")"/databases"
MYSQLDUMP="/usr/bin/mysqldump"
MYSQL="/usr/bin/mysql"
mkdir -p $OUTPUTDIR
if [ -z "$1" ]; then
databases=$($MYSQL --host=$HOST --user=$USER --password=$PASSWORD --batch --skip-column-names -e "SHOW DATABASES;" | grep -v '^mysql$\|^information_schema$')
for database in $databases; do
$MYSQLDUMP \
--host=$HOST \
--user=$USER --password=$PASSWORD \
--force \
--quote-names --dump-date \
--opt --single-transaction \
--routines --triggers \
--databases $database \
--result-file="$OUTPUTDIR/$database.sql"
done
else
for database in ${@}; do
$MYSQLDUMP \
--host=$HOST \
--user=$USER --password=$PASSWORD \
--force \
--quote-names --dump-date \
--opt --single-transaction \
--routines --triggers \
--databases $database \
--result-file="$OUTPUTDIR/$database.sql"
done
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment