Last active
November 13, 2017 17:02
-
-
Save Jotschi/8792866 to your computer and use it in GitHub Desktop.
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 | |
DATADIR=/opt/mysql/server-5.6/data/ | |
echo -e "\n * Stopping mysql" | |
/etc/init.d/mysql stop | |
killall mysqld | |
killall -9 mysqld | |
echo "Done." | |
echo -e "\n * Remounting tmpfs" | |
umount $DATADIR | |
umount $DATADIR | |
mount $DATADIR | |
echo "Done." | |
echo -e "\n * Inserting bare copy" | |
cp -ra /opt/mysql/server-5.6/databarecopy/* $DATADIR | |
echo "Done." | |
echo -e "\n * Starting mysql" | |
/etc/init.d/mysql start | |
echo "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment