skip to Main Content

Please can you help me. I try to connect to postgres database in AWS.

I set up the dBeaver but still i get the timeout.

RDS Settings
enter image description here

Configuration
enter image description here

VPC Settings
enter image descrienter image description hereption here

Security group
enter image description here

Settings in dBeaver
enter image description here

Maybe the problem is there, but how i can change the GRANT if i have no access to db
enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    Yes, unfortunatelly i have checked a lot of times and i think it is corect.

    RDS Settings with Networking enter image description here

    VPC Settings enter image description here

    Subnet Settings enter image description here

    Security group enter image description here


  2. As you use Postgresql 16 RDS might require you to use SSL to connect to your DB.

    The default rds.force_ssl parameter is set to 1 (on) for RDS for PostgreSQL version 15.

    Check this parameter if your RDS requires to use of SSL.

    How to connect with SSL or disable this restriction you can find here in docs – https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/PostgreSQL.Concepts.General.SSL.html

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search