Created
November 19, 2015 03:21
-
-
Save lichti/1b0da3443d8a2b60a2dc to your computer and use it in GitHub Desktop.
Script to restore dump in MySQL Slave Server
This file contains 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 | |
DUMP=${1} | |
DBUSER=${2} | |
DBPASS=${3} | |
DBADDR=${4:-localhost} | |
DBPORT=${5:-3306} | |
[email protected] | |
SLAVE_STRING=$(zcat $DUMP | head -30 | grep MASTER_LOG_FILE | sed s/--\ //g) | |
mysql -u$DBUSER -p$DBPASS -e "stop slave;" | |
ionice -c 1 -n 0 nice -n -15 pv -p -t -e $DUMP | gzip -d -c - | mysql -u$DBUSER -p$DBPASS | |
mail -s "[RESTORE DUMP END] OK:$DUMP" $EMAIL_LIST < /dev/null | |
mysql -u$DBUSER -p$DBPASS -e "$SLAVE_STRING" | |
mysql -u$DBUSER -p$DBPASS -e "start slave;" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment