将数据从一个 amazon rds mySQL 实例传输到另一个 aws 账户的 RDS mySQL 实例的最佳方法是什么?
这是为了将 Heroku 上的网站转移给其他所有者。
将数据从一个 amazon rds mySQL 实例传输到另一个 aws 账户的 RDS mySQL 实例的最佳方法是什么?
这是为了将 Heroku 上的网站转移给其他所有者。
如果它那么小,只需使用mysqldump
mysql 客户端中的实用程序。
#note I'm piping it through GZip for compression. It will save you bandwidth
$ mysqldump -u user --password=passowrd -h your_rds_host db_name | gzip -c > db.sql.gz
#unzip the dump
$ gunzip db.sql.gz
#restore on the destination
$ mysql -u user --password=passowrd -h your_destination_rds_host db_name < db.sql
这应该够了吧。
我有时会使用 MySQL 客户端 (Navicat),它可以让您将数据从一个数据库迁移到另一个数据库。它支持数据库结构、数据或两者的同步。很方便。