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
preguntada hace 2 años244 visualizaciones
2 Respuestas
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.

respondido hace 2 años
  • 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
respondido hace 2 años

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas