Aurora cluster endpoints won't resolve

0

We are using a Aurora Global Database in a few different regions. In one of our regions (Mumbai) our cluster endpoints suddenly stopped resolving, so our EC2's can't connect to it anymore. It's solved by changing the database hostname from .cluster-ro-.ap-south-1.rds.amazonaws.com to -instance-1..ap-south-1.rds.amazonaws.com. But that is a temporary solution.

Any thoughts on how we can re-activate resolving the cluster endpoints again?

JorisL
질문됨 2년 전245회 조회
2개 답변
0

Looks like the accessiblity flag issue. You can check the same via CLI using the describe-db-clusters API and filtering or searching for PubliclyAccessible. Here is an example:

aws rds describe-db-instances --region us-west-2 --output json --query 'DBInstances[?Engine==aurora].{instance:DBInstanceIdentifier, cluster:DBClusterIdentifier, isPublic:PubliclyAccessible }' [ { "instance": "MyInstance_1", "isPublic": true, "cluster": "MyAurora_Wrk-cluster" }, { "instance": "MyInstance_2", "isPublic": false, "cluster": "MyAurora_Wrk-cluster" } ] You modify an instance and enable public access on it using the modify-db-instance API.

답변함 2년 전
  • Our RDS servers are only available from private subnets. So no need for public accessibility.

0

Last night the same error occurred in an other region (us-west-1). Sounds like a problem that other AWS users should face too?

JorisL
답변함 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠