当我试图使用带有极光MySQL5.6的rds连接器的createdbinstance创建dbinstance时,它给出了下面的错误
The source cluster could not be found or cannot be accessed: cluster-name (Service: AmazonRDS; Status Code: 404; Error Code: DBClusterNotFoundFault; Request ID: c1bbcbb3-da7c-4e17-9440-3dfa260f1609)我需要使用aws创建它吗?
发布于 2019-12-10 04:52:26
aws rds create-db-cluster \
--db-cluster-identifier sample-cluster \
--engine aurora-mysql \
--engine-version 5.7.12 \
--master-username master \
--master-user-password secret99 \
--db-subnet-group-name default \
--vpc-security-group-ids sg-0b9130572daf3dc16参考资料:https://docs.aws.amazon.com/cli/latest/reference/rds/create-db-cluster.html
https://stackoverflow.com/questions/59259721
复制相似问题