79082138

Date: 2024-10-12 23:35:05
Score: 2
Natty:
Report link

When diagnosing RDS instance connectivity issues there's a few layers to peel back.

  1. Is the instance using the correct subnets (public for public access, private for almost all other situations)
  2. Is the DB configured to be publically accessible if you're using public subnets
  3. Does your security group allow the connection you're trying
  4. Do you have the correct credentials

The first two are pretty easy to check in the AWS console, but the easiest possible way to test external connectivity is to test with telnet:

telnet my-db-hostname 3306

If you make a successful connection then you've established the following:

So if all that works, then the only possibility is you've got the wrong credentials. In your situation I think you're using the wrong username root, which should be admin if you're using aurora

p.s: You might want to modify your question and remove the hostname

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have the
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: AshleyJ