Skip to content

Instantly share code, notes, and snippets.

@jemekite
Created June 3, 2015 13:34
Show Gist options
  • Save jemekite/8c801b6be2e9ae134f60 to your computer and use it in GitHub Desktop.
Save jemekite/8c801b6be2e9ae134f60 to your computer and use it in GitHub Desktop.
Dump every databases on the server
#!/bin/bash
USER="root"
PASSWORD="[yourpass]"
ExcludeDatabases="Database|information_schema|performance_schema|mysql"
databases=`mysql -u $USER -p$PASSWORD -e "SHOW DATABASES;" | tr -d "| " | egrep -v $ExcludeDatabases`
for db in $databases; do
echo "Dumping database: $db"
#mysqldump -u $USER -p$PASSWORD --databases $db > `date +%Y%m%d`.$db.sql
mysqldump -u $USER -p$PASSWORD --databases $db | gzip > `date +%Y%m%d`.$db.sql.gz
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment