Last active
August 29, 2015 14:13
-
-
Save alexcheng1982/f8ef62dcdcd2728a141a to your computer and use it in GitHub Desktop.
Importing Data from a MySQL DB to an Amazon RDS MySQL DB Instance
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
sudo mysqldump --databases world --single-transaction --compress --order-by-primary –u <local_user> -p<local_password> | |
| mysql --host hostname –-port 3306 –u <RDS_user_name> –p<RDS_password> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From AWS doc.