Discussion:
[ADMIN] user management and edbldr use
(too old to reply)
Karuna Karpe
2011-10-24 12:58:36 UTC
Permalink
Hello,


I am create one linux user that "dba" with password "password". I
create one database user "dba_user" with password "dba_user".
I add entry into pg_ident.conf

MAPNAME SYSTEM-USERNAME PG-USERNAME
dba_map dba dba_user

I want to connect dba user to database edb.
./psql -d edb -U dba

it give error can't connect. Please explain me how do this?

Regards,
karuna
Kevin Grittner
2011-10-24 19:35:10 UTC
Permalink
Post by Karuna Karpe
I am create one linux user that "dba"
I create one database user "dba_user"
I add entry into pg_ident.conf
MAPNAME SYSTEM-USERNAME PG-USERNAME
dba_map dba dba_user
I want to connect dba user to database edb.
./psql -d edb -U dba
it give error can't connect. Please explain me how do this?
You didn't show your pg_hba.conf file, which is a critical part of
this picture; but from what you did show, it appears that you're not
trying to use this correctly. The mapping you show would allow a
user who had been authenticated as dba externally to log in to
PostgreSQL as dba_user. You should be using the PostgreSQL user
name on the psql command line, not the OS user name. You need a
pg_hba.conf line which specifies how the OS user will be
authenticated and specifying which map will be used to get from that
OS user to which PostgreSQL user(s). Note that there might be more
than one PostgreSQL user that a particular OS user is allowed to use
for connections.

http://www.postgresql.org/docs/current/interactive/auth-username-maps.html

-Kevin
--
Sent via pgsql-admin mailing list (pgsql-***@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin
Loading...