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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南