RDS "Restore from S3" Stuck in "Creating" Status

0

I am unable to do a "Restore from S3" operation, following the documentation here: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html I have tried both Aurora and RDS MySQL, and they both get stuck in "Creating" status. I can connect to the instance, and see that the imported data is there. I have examined the logs on the RDS MySQL instance, and see no errors. How can I get unstuck from "Creating" status?

S Evett
已提问 2 年前766 查看次数
2 回答
0

Hello,

Try running with:

@with_norecovery = 0

and see if that works for you. Setting it to 1 leaves it in a state where you can then restore additional transaction logs etc, or set up replication. If you want the database usable, you need to leave it in an online state, which setting it to 0 should do.

profile pictureAWS
支持工程师
已回答 2 年前
  • I don't think MySQL has an equivalent parameter to SQL Server's @with_norecovery.

0

I found the cause. In the source database from which the backup was taken, there was a user "admin"@"localhost". When I was choosing the DB create parameters, I accepted the default master user name which was: "admin"@"localhost". This conflict caused the restore to fail on creating the master user and then retry, apparently in an infinite loop. I solved the problem simply by choosing a different name for the master user.

S Evett
已回答 2 年前

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

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

回答问题的准则