Created
March 26, 2013 14:42
-
-
Save dopa/5245868 to your computer and use it in GitHub Desktop.
Shell Script to Back Up all MySQL Databases, Keep 7 Days of Backups
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 characters
#!/bin/bash | |
# Script will output dumps for all databases using seperate files | |
# Derived from this post: http://www.cyberciti.biz/faq/ubuntu-linux-mysql-nas-ftp-backup-script/ | |
USER="root" | |
PASSWORD="SnM1073k" | |
HOST="localhost" | |
MYSQL="$(which mysql)" | |
MYSQLDUMP="$(which mysqldump)" | |
OUTPUT_DIR="/backups/files" | |
# Parse options | |
while getopts ":u:p:h:o:" opt; do | |
case $opt in | |
u) | |
USER=$OPTARG | |
;; | |
p) | |
PASSWORD=$OPTARG | |
;; | |
h) | |
HOST=$OPTARG | |
;; | |
o) | |
OUTPUT_DIR=$OPTARG | |
;; | |
\?) | |
echo "Invalid option: -$OPTARG" >&2 | |
exit 1 | |
;; | |
:) | |
echo "Option -$OPTARG requires an argument." >&2 | |
exit 1 | |
;; | |
esac | |
done | |
VALIDATION_ERROR=false | |
if [ -z "$USER" ]; then | |
echo "User has not been specified" >&2 | |
VALIDATION_ERROR=true | |
fi | |
if [ -z "$PASSWORD" ]; then | |
echo "Password has not been specified" >&2 | |
VALIDATION_ERROR=true | |
fi | |
if [ -z "$OUTPUT_DIR" ]; then | |
echo "Output dir has not been specified" >&2 | |
VALIDATION_ERROR=true | |
fi | |
if $VALIDATION_ERROR ; then | |
exit 1 | |
fi | |
dd=`date +%Y%m%d` | |
DBS="$($MYSQL -u $USER -h $HOST -p$PASSWORD -Bse 'show databases')" | |
for db in $DBS | |
do | |
if [ $db != "information_schema" ]; then | |
FILE=$OUTPUT_DIR/$db$dd.sql | |
$MYSQLDUMP -u $USER -h $HOST -p$PASSWORD --skip-lock-tables $db > $FILE | |
fi | |
done | |
# Delete all backups older than 7 days | |
find /backups/files -mtime +7 -exec rm -f {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No, you don't. For any others coming here, please just try to run "which mysql" in a terminal and see what happens.