Home > Net >  Cant connect to free heroku postgres database from outside
Cant connect to free heroku postgres database from outside

Time:04-12

According official heroku articles I should be able to connect to postgres database from outside:

DB credentials

DBeaver example: DBeaver example

I get Connection attempt timed out error in DBeaver and Error: [08001] The connection attempt failed. in DataGrip.

CodePudding user response:

The reason why I could not connect was that I was using VPN, which IP was probably baned by Heroku. Connecting without VPN works.

  • Related