hpaknia
hpaknia

Reputation: 3108

AWS, RDS: How to migrate +40GB Postgres database from AWS ec2 instance to RDS using hard disk files?

It seems migrating Postgres database using data directory is viable:

How To Move a PostgreSQL Data Directory to a New Location on Ubuntu 16.04

But in case of RDS because SSHing to the RDS is not possible I am here to ask if there is any way to speed up my Postgres database migration.

Upvotes: 0

Views: 192

Answers (1)

John Rotenstein
John Rotenstein

Reputation: 269091

You could use the AWS Database Migration Service:

AWS Database Migration Service (AWS DMS) is a cloud service that makes it easy to migrate relational databases, data warehouses, NoSQL databases, and other types of data stores. You can use AWS DMS to migrate your data into the AWS Cloud, between on-premises instances (through an AWS Cloud setup), or between combinations of cloud and on-premises setups.

Upvotes: 1

Related Questions