santoso berkah <im_id@yahoo.com> writes:
> I try to set up the pg_hba.conf:
> localhost mindik 192.168.0.3 trust
BTW, this is certainly wrong... PG 7.2 supports these two syntaxes:
# Unix sockets:
local all trust
# TCP sockets:
host all 127.0.0.1 255.255.255.255 trust
You might perhaps also want
host all 192.168.0.3 255.255.255.255 trust
or
host all 192.168.0.0 255.255.255.0 trust
depending on your local network setup.
regards, tom lane