On Sun, Aug 13, 2006 at 07:07:11PM -0400, Harpreet Dhaliwal wrote: > Problem was with pg_hba.conf file > > ECPGdebug(1, stderr); showed that in pg_hba.conf there was setting for > localhost only and not for other ip addresses. > > I had to change the configuration for IPV4 local connections > > It should have been something like > > host all all 192.168.0.0/24 trust > instead of > host all all 127.0.0.1/32 trust (which is meant for localhost > only) > > I think i got it...right? You might want to add 192.168.0.0/24 on another line rather than replacing 127.0.0.1. And allowing "trust" connections is bad security practice because anybody on one of the allowed IP addresses could connect as any user without being challenged for a password. Consider using a stronger authentication method and modifying the client code accordingly. http://www.postgresql.org/docs/8.1/interactive/auth-methods.html -- Michael Fuhr