Created
July 1, 2019 16:24
-
-
Save hnxvc/0c7fa3975cb9a6e1e0df9b648199e4e5 to your computer and use it in GitHub Desktop.
Backup and restore mysql
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
# Backup | |
mysqldump -uroot -p*** hoablog --single-transaction --quick --lock-tables=false > /root/backup/mysql/hoablog-$(date +%F).sql | |
cd /root/backup/mysql | |
git add . | |
git commit -m "Backup file" | |
git push origin master | |
#Restore | |
mysql -u root -p*** hoablog < /root/backup/mysql/hoablog-2019-06-08.sql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment