Can't migrate from snapshot to aurora

0

I'm trying to migrate my postgresql to aurora through a snapshot as detailed here, but the "Migrate Snapshot" option under actions is greyed out.

The snapshot postgre version is 12.9 and I've checked it's supported by aurora. Before, it was version 12.8 and I tried upgrading the db to see if it would solve the problem but had no luck.

1 回答
1
已接受的回答

I have successfully created an Aurora cluster with the AWS CLI. Depending on the engine version, it seems that it can only be done with the AWS CLI.

aws rds restore-db-cluster-from-snapshot \
--snapshot-identifier {snapshot ARN} \
--engine-version 12.9 \
--db-cluster-identifier {cluster name} \
--engine aurora-postgresql

aws rds create-db-instance \
--db-cluster-identifier {cluster name} \
--db-instance-class db.t3.medium \
--db-instance-identifier {instance name} \
--engine aurora-postgresql
已回答 2 年前
  • This solved it. I've even manage to use aurora serverlerss with this solution, but had to upgrade to 13.6 first.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则