Reputation: 171
I am trying to migrate an Aurora cluster from one of our accounts to another. We actually do not have a lot write requests and the database itself is quite small, but somehow we decided to minimize the downtime.
I have looked into several options
Upvotes: 1
Views: 3326
Reputation: 171
We actually ended up using DMS for this migration. What we did was:
Upvotes: 1
Reputation: 415
Looking at the docs, AWS Aurora with PostgreSQL compatibility is allowed as source & target endpoints. So, answering your question, yes it's possible.
Obviously, your source Aurora DB should be accessible from the target account. Check that the DB endpoint is public and the traffic is not restricted by ACLs rules or SGs rules.
Also, if you want to enable ongoing replication, you need to grant rds_replication
(or rds_superuser
) role to the source database user. Link to the docs.
Upvotes: 6