Skip to content

Instantly share code, notes, and snippets.

@lichti
Created November 19, 2015 03:21
Show Gist options
  • Save lichti/1b0da3443d8a2b60a2dc to your computer and use it in GitHub Desktop.
Save lichti/1b0da3443d8a2b60a2dc to your computer and use it in GitHub Desktop.
Script to restore dump in MySQL Slave Server
#!/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