Skip to content

Instantly share code, notes, and snippets.

@TheHiddenHaku
Created December 13, 2015 00:30
Show Gist options
  • Save TheHiddenHaku/47364f2ba99a627910dc to your computer and use it in GitHub Desktop.
Save TheHiddenHaku/47364f2ba99a627910dc to your computer and use it in GitHub Desktop.
Backup All MySQL dbs in separate files
#! /bin/bash
TIMESTAMP=$(date +"%F")
BACKUP_DIR="/backup/$TIMESTAMP"
MYSQL_USER="backup"
MYSQL=/usr/bin/mysql
MYSQL_PASSWORD="password"
MYSQLDUMP=/usr/bin/mysqldump
mkdir -p "$BACKUP_DIR/mysql"
databases=`$MYSQL --user=$MYSQL_USER -p$MYSQL_PASSWORD -e "SHOW DATABASES;" | grep -Ev "(Database|information_schema|performance_schema)"`
for db in $databases; do
$MYSQLDUMP --force --opt --user=$MYSQL_USER -p$MYSQL_PASSWORD --databases $db | gzip > "$BACKUP_DIR/mysql/$db.gz"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment