Hello, I am trying to access my dedicated postgresql dedicated database from do terminal. Is there a way to do it? I tried to do this :
psql -U user -d database -h host -p port
And I get this error:
psql: error: connection to server at “my server” failed: Connection timed out
Is the server running on that host and accepting TCP/IP connections?
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.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hi there,
Accessing a DigitalOcean Managed PostgreSQL database from the DigitalOcean terminal (or any terminal) involves a few steps to ensure a secure and successful connection. The error you’re encountering, “connection to server at ‘my server’ failed: Connection timed out,” typically indicates a problem with network access to the database server.
Connection String and Credentials: Ensure that you are using the correct connection string and credentials. You can find these details in your DigitalOcean Control Panel under the ‘Databases’ section.
Whitelist Your IP Address: If you’ve enabled trusted sources for your DigitalOcean Managed Databases, then make sure the IP address of the machine you’re connecting from is added to the trusted sources list in the database’s settings.
Check PostgreSQL Port: The default port for PostgreSQL is 5432 however when using a managed database cluster the port is different. Ensure that you are using the correct port as mentioned in your database configuration.
Let me know how it goes!
Best,
Bobby