Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将我的 AWS RDS 实例上的数据库 mysqldump 到 .sql 文件以供本地使用?
这很简单:
mysqldump -H <RDS_URL> -u <user> -p<password> <db> > myfile.sql
只要您添加-H正确的用户/密码凭据,就没有问题。
-H
或者,您可以使用 MySQL Work Bench 之类的客户端远程打开它,并随时将其导出为 .sql。
http://www.mysql.com/products/workbench/