Hi! Can someone explain how to enable remote connection (from my local/client machine) to the the Postgres db which I set on the server?
First, I got this couldn’t connect to server connection refused. Then I tried to edit configurations in
by adding this:
host all all 89.214.182.137/24 trust
and changing ‘localhost’ in
to:
listen_addresses='*'
Still was no result:
sudo iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
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.
Click below to sign up and get $100 of credit to try our products over 60 days!
hey guys. I’m having a hard time here. I already did the same things you did, undocumenting listen_addresses and all. Still can’t access my database using PGAdmin remotely… any clues?
This comment has been deleted
Did you restart postgres after the change? If so, install lsof and check
lsof -i :5432 -n
.