I have a Postgres database on digitalocean. I am able to connect to it from my pod in Kubernetes. However, when I try to connect to it using pgadmin, or sqlectron, I get connection timeouts.
Error invoking remote method 'DB_CONNECT': Error: connect ETIMEDOUT
The logs show that it connects, then times out. Please what am I missing?
I have added my ip address to the trusted sources for the database.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
It sounds like you might have a dynamic IP address, I could suggest verifying that your IP has not changed by visiting a website like https://ifconfig.io/ for example.
If your IP has changed, I could suggest adding the new one to the trusted sources and then trying again.
If your IP is still the same I could suggest a few more things:
telnet
for example:telnet
works, try connecting withpsql
to verify that it is not a problem with the SQL client that you are usingLet me know how it goes!
Best,
Bobby