无法进入经典 EC2 中 MySQL RDS 实例的创建读副本页面

0

【以下的问题经过翻译处理】 我有一个旧的MySQL RDS实例,目前它是在经典EC2上运行。自从本周以来,每当我尝试进入RDS管理控制台上的“创建只读副本”页面时,都会看到以下错误信息:

Cannot read properties of undefined (reading 'VpcId')

有人知道这个错误是什么意思并且如何解决吗?

profile picture
EXPERT
asked 8 months ago49 views
1 Answer
0

【以下的回答经过翻译处理】 对于遇到这个错误的用户,我认为这是管理控制台的一个错误。在他们修复这个问题之前,你可以使用 AWS CLI 为经典 EC2 中的 RDS 实例创建只读副本。

示例命令:

aws rds create-db-instance-read-replica --profile xxxx --db-instance-identifier xxx  --source-db-instance-identifier xxx  --db-instance-class db.m3.medium --storage-type standard --no-multi-az --publicly-accessible --no-auto-minor-version-upgrade

命令参考:

https://awscli.amazonaws.com/v2/documentation/api/latest/reference/rds/create-db-instance-read-replica.html

profile picture
EXPERT
answered 8 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions