为什么我不能使用用于Aurora的rds连接器m子4创建新的数据库集群

时间:2019-12-10 03:20:23

标签: amazon-rds aurora mule4

当我尝试使用rds连接器的 createdbinstance aurora mysql 5.6创建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 cli创建它吗?

1 个答案:

答案 0 :(得分:0)

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