Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search archives
  Advanced Search

Re: please help





On Wed, 18 Feb 2009, abdi indra wrote:

org.postgresql.util.PSQLException: FATAL: missing or erroneous
pg_hba.conf

This is not a Java/JDBC problem, but a server configuration problem.

local   all         all         192.168.110.133       trust

This line is bogus because local means a unix domain socket which doesn't have an IP address.

host all all 192.168.110.133/255.255.255.255 trust

This isn't a valid line either. You want the CIDR /32 format, not a netmask.

Kris Jurka



Home | Main Index | Thread Index

Privacy Policy | About PostgreSQL
Copyright © 1996 – 2012 PostgreSQL Global Development Group