Reputation: 1
I just need help here, I'm just getting started into AWS RDS, I have web application and I have deployed into AWS Through AWS EBS and now I wanted to connect my DB, for that I attached RDS to my application in beanstalk. When testing the connection, I am Getting this error
This is my ENDPOINT:
Here are my RDS DB Configuration:
and SID is:
please help me sort this, I got stuck here from 2 days. Thank You.... :)
Upvotes: 0
Views: 612
Reputation: 73
I found SQLDeveloper Version v19.2.1.247 Build 247.2212 (using ojdbc8.jar v18.3.0.0) to be working for me while every newer version of SQLDeveloper is unable to connect to the RDS (no problems with local or intranet DBs so far).
Upvotes: 0
Reputation: 53421
Please, in your connection setup in SQL Developer, in the Hostname field, just remove the literal :3306
at the end of your hostname string: this value is in fact the port in which the database is listening.
In order to complete your connection setup, enter the value 3306
in the Port field instead of the 1521
you indicated in your image.
Upvotes: 2