Thread: What's wrong with this identification configuration?

What's wrong with this identification configuration?

From
Wei Weng
Date:
This is the idenfication setup in my /var/lib/pgsql/data/pg_hba.conf

local   all                                             trust
host    all     127.0.0.1       255.255.255.255         trust

This is supposed to authenticate any user to be able to access my postgresql
system any time, no?

But this is what happened:

[root@Monet wweng]# su postgres
bash-2.05a$ psql template1
psql: FATAL 1:  No pg_hba.conf entry for host localhost, user postgres,
database template1

bash-2.05a$ exit
[root@Monet wweng]# psql template1
psql: FATAL 1:  No pg_hba.conf entry for host localhost, user root, database
template1

[root@Monet wweng]# exit
[wweng@Monet wweng]$ psql template1
psql: FATAL 1:  No pg_hba.conf entry for host localhost, user wweng, database
template1

Why is this happening? And how can I log in the template1 database?

I am using postgresql 7.2.3 on Redhat 7.3.

bash-2.05a$ rpm -qa | grep postgresql
postgresql-7.2.3-5.73
postgresql-libs-7.2.3-5.73
postgresql-server-7.2.3-5.73
postgresql-devel-7.2.3-5.73

Thanks a lot!


Wei










Re: What's wrong with this identification configuration?

From
Tom Lane
Date:
Wei Weng <wweng@cs.columbia.edu> writes:
> This is the idenfication setup in my /var/lib/pgsql/data/pg_hba.conf
> local   all                                             trust
> host    all     127.0.0.1       255.255.255.255         trust

> This is supposed to authenticate any user to be able to access my postgresql 
> system any time, no?

Any local user, yes.

> But this is what happened:
> [root@Monet wweng]# su postgres
> bash-2.05a$ psql template1
> psql: FATAL 1:  No pg_hba.conf entry for host localhost, user postgres, 
> database template1

Did you recently change the pg_hba.conf file?  If so, maybe you forgot
to SIGHUP the postmaster to get it to re-read the file.  Otherwise, my
only thought is that you aren't talking to the same postmaster you
thought you were ... that pg_hba.conf should definitely let in any
local connection ...
        regards, tom lane