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.

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ