Обсуждение: user management and edbldr use

Поиск
Список
Период
Сортировка

user management and edbldr use

От
Karuna Karpe
Дата:
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

Re: user management and edbldr use

От
"Kevin Grittner"
Дата:
Karuna Karpe <karuna.karpe@os3infotech.com> wrote:

> 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