Created
January 28, 2015 10:01
-
-
Save qutek/cffd9f9ca8f3d00aaf29 to your computer and use it in GitHub Desktop.
[shell] Script to backup mysql databases with split
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 | |
### change the values below where needed..... | |
### taken from http://moinne.com/blog/ronald/mysql/backup-large-databases-with-mysqldump | |
DBNAMES="MyDb1 MyDb2 MyDb3" | |
HOST="--host=localhost" | |
USER="--user=root" | |
PASSWORD="--password=MyPassword" | |
BACKUP_DIR="/MyBackupDirectory" | |
#### you can change these values but they are optional.... | |
OPTIONS="--default-character-set=latin1 --complete-insert --no-create-info --compact -q" | |
RESTORESCRIPT="$BACKUP_DIR/__restoreData.sql" | |
DATE=`/bin/date '+%y%m%d_%H%M%S'` | |
#### make no changes after this.... | |
#### start script #### | |
echo removing old temporary files if they exists... | |
rm -f ${BACKUP_DIR}/*.sql > /dev/null 2>&1 | |
rm -f ${BACKUP_DIR}/*.tar > /dev/null 2>&1 | |
cd ${BACKUP_DIR} | |
for DB in $DBNAMES | |
do | |
echo "==========================================" | |
echo ${DB} | |
echo "==========================================" | |
echo 'SET FOREIGN_KEY_CHECKS=0;' > $RESTORESCRIPT | |
mysqldump --no-data $HOST $USER $PASSWORD $DB > ${BACKUP_DIR}/__createTables.sql | |
echo 'source __createTables.sql;' >> $RESTORESCRIPT | |
for TABLE in `mysql $HOST $USER $PASSWORD $DB -e 'show tables' | egrep -v 'Tables_in_' `; do | |
TABLENAME=$(echo $TABLE|awk '{ printf "%s", $0 }') | |
FILENAME="${TABLENAME}.sql" | |
echo Dumping $TABLENAME | |
echo 'source' $FILENAME';' >> $RESTORESCRIPT | |
mysqldump $OPTIONS $HOST $USER $PASSWORD $DB $TABLENAME > ${BACKUP_DIR}/${FILENAME} | |
done | |
echo 'SET FOREIGN_KEY_CHECKS=1;' >> $RESTORESCRIPT | |
echo making tar... | |
tar -cf ${DB}_${DATE}.tar *.sql > /dev/null 2>&1 | |
echo compressing... | |
gzip -9 ${DB}_${DATE}.tar > /dev/null 2>&1 | |
echo removing temporary files... | |
rm -f ${BACKUP_DIR}/*.sql > /dev/null 2>&1 | |
rm -f ${BACKUP_DIR}/*.tar > /dev/null 2>&1 | |
echo "done with " $DB | |
done | |
echo "==========================================" | |
echo " done with all database! " | |
echo "==========================================" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment