From: Michael W. <wa...@tr...> - 2002-06-13 23:04:13
|
At 04:29 PM 6/13/2002 -0400, Dave Strickler wrote: > > I tried to to this, and the "from" command worked, and I got a lot > > further. But, as you can see from below, it wasn't 100% sucsessful. Any > > clues as to what is going wrong? I made a pg_hba.conf in the PgSQL > > directory, and added in my 10.0.0.120 address (that's my workstation), > > but it didn't help. You are getting close but not quite... Note!! pg_hba.conf does not go in the PgSQL directory... but in your PostgreSQL server's **data** directory... something like /usr/local/pgsql/data if you have not moved it. Try at the command line locate pg_hba.conf which should show you the path to some sample and the actual conf file. In that file have: host all 10.0.0.120 255.255.255.0 trust ... for now, just to be sure authentication isn't an issue. |