Question

Remote access to PostgreSQL with pgAdmin

I can’t access remotely to a PostgreSQL, with pgAdmin database installed on an Ubuntu 16.04 droplet, with the Wordpress one install.

I would like to import a dump file, with the database settings from my local computer.

In the postgresql.conf file I have set:

listen_addresses = ‘*’

Running SHOW listen_addresses; I get localhost (1 row)

and in the pg_hba.conf one:

host all all 0.0.0.0/0 md5

But each time, that I try to connect from pgAdmin at my local computer I get this message: could not connect to server: Connection timed out (0x0000274C/10060) Is the server running on host “139.59.151.107” and accepting TCP/IP connections on port 5432?

Any help would be much appreciated. Thanks in advance, Aleix Alcover

Show comments

Submit an answer
Answer a question...

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!

Sign In or Sign Up to Answer

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.

Jonathan Tittle
DigitalOcean Employee
DigitalOcean Employee badge
June 20, 2017
Accepted Answer

@aleixalcover

When doing a port scan on 139.59.151.107, only ports 22 and 80 seem to be open, so if you need to connect remotely, you’d need to open port 5432 in the firewall to be able to connect.

Since you’re on Ubuntu, you can do this with ufw using:

ufw allow 5432/tcp

Let me know if that helps :-).

This comment has been deleted

Want to learn more? Join the DigitalOcean Community!

Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.

I have what seems to be a similar problem. In my case, I am using centos 7. I followed these steps to configure postgres on the remote server: sudo -i -u root

echo "listen_addresses = ''" /etc/postgresql//main/postgresql.conf

echo ‘host all all 0.0.0.0/0 md5’ /etc/postgresql/*/main/pg_hba.conf

sudo systemctl restart postgresql

However, when I try connecting to pgadmin4 on my local computer, I get the following error:

Unable to connect to server:

could not connect to server: Connection refused Is the server running on host “159.89.237.166” and accepting TCP/IP connections on port 5432?

What do I do? I would greatly appreciate your help with this. Is there a command for Centos7 similar to “ufw allow 5432/tcp”? Or, is my problem something else (perhaps, in how I tried to configure postregres)?

Thanks in advance!