-
-
Save morgant/0501da55c760b92304c640fdfc4db669 to your computer and use it in GitHub Desktop.
pipe a mysql dump through gzip and send it over ssh
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
# dump to another server | |
mysqldump -u MYSQL_USERNAME -p YOUR_DATABASE | gzip -c | ssh USERNAME@YOUR_TO_HOST 'cat > ~/dump.sql.gz' | |
# dump from another server | |
ssh USERNAME@YOUR_TO_HOST 'mysqldump -u MYSQL_USERNAME -pPASSWORD YOUR_DATABASE | gzip -c' > ~/dump.sql.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment