All Questions
Tagged with postgresql firewall
4 questions
0
votes
1
answer
2k
views
ufw won't allow connections to postgres port 5432
With ufw disable on remote postgres system i'm able to connect from my local system
However, the connection does not work when I ufw enable as shown below:
C:\Users\HOME>telnet 80.240.24.195 5432
...
1
vote
1
answer
104
views
Basic Hosting Postgresql in Virtualbox + Ubuntu 14.04
I have configured Postgres to accept network connections from anywhere:
In pg_hga.conf:
host all all 0.0.0.0/0 md5
In postgresql.conf:
listen_addresses = '*'
I ...
2
votes
1
answer
23k
views
ufw won't allow connections to port 5432
I've installed Postgresql 9.4 on Ubuntu Trusty from the PGDG ppa. I've created a database and set it listen-addresses to '*'. I've made an entry in the pg_hba.conf file. I can connect locally with no ...
2
votes
1
answer
281
views
Firewall config prevents hibernate connecting to postgres in CentOS6.3
I have an operating environment in CentOS 6.3 that has tomcat7 and postgres9.2 installed. There is just one web application deployed in tomcat that tries to establish a connection from localhost to ...