3

将数据从一个 amazon rds mySQL 实例传输到另一个 aws 账户的 RDS mySQL 实例的最佳方法是什么?

这是为了将 Heroku 上的网站转移给其他所有者。

4

2 回答 2

8

如果它那么小,只需使用mysqldumpmysql 客户端中的实用程序。

#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

这应该够了吧。

于 2011-12-15T10:22:07.113 回答
2

我有时会使用 MySQL 客户端 (Navicat),它可以让您将数据从一个数据库迁移到另一个数据库。它支持数据库结构、数据或两者的同步。很方便。

于 2012-10-03T11:49:03.790 回答