Member since
08-16-2019
5
Posts
0
Kudos Received
0
Solutions
07-21-2016
01:38 PM
@ Venkat ramanann In addition to @Jon Maestas workaround, add the IP address of the host (on which PostgreSQL server is running) to the pg_hba.conf file and make sure that the method is set to "trust". Note: Replace <ip address> with the IP address of your host to allow connections. # TYPE DATABASE USER CIDR-ADDRESS METHOD # IPv4 local connections: host all all 127.0.0.1/32 md5 host all all <ip address>/24 trust # IPv6 local connections:
host all all ::1/128 md5 Now, restart postgresql service. For more details, visit https://confluence.atlassian.com/confkb/confluence-unable-to-connect-to-postgresql-due-to-unconfigured-pg_hba-conf-file-300814422.html
... View more