Gowtham Balu
Gowtham Balu

Reputation: 1

Unable to Connect AWS RDS from SQL Developer

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

enter image description here

This is my ENDPOINT:

enter image description here

Here are my RDS DB Configuration:

enter image description here

and SID is:

enter image description here

please help me sort this, I got stuck here from 2 days. Thank You.... :)

Upvotes: 0

Views: 612

Answers (2)

Final'Cie
Final'Cie

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

jccampanero
jccampanero

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

Related Questions