Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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.
Accepted Answer
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 :-).
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!
This comment has been deleted