Doubt with role creation - Mailing list pgsql-novice

From Manuel Rivero
Subject Doubt with role creation
Date
Msg-id AANLkTint=YDNb7GCY=43rT9dBsNuT_=Y4ewiDchU-Pyg@mail.gmail.com
Whole thread Raw
Responses Re: Doubt with role creation  (Thom Brown <thom@linux.com>)
List pgsql-novice
Hi

I'm trying  to create a new role doing:
# CREATE ROLE db_admin WITH CREATEDB CREATEROLE CREATEUSER PASSWORD 'password';
CREATE ROLE

If I check the roles, the new one is there:
postgres=# Select rolname from pg_roles where rolname = 'db_admin';
rolname   
---------------
pele_db_admin
(1 fila)

The problem is that when I try to enter psql with this user I get the following:

postgres@linux> psql -U pele_db_admin -W
Password for user pele_db_admin:
psql: FATAL:  la autentificación Ident falló para el usuario «pele_db_admin»

which translated is: psql: FATAL:  Ident authentication failed for user «pele_db_admin»

Why is this happening and how could I avoid it?

May be users and roles are not the same and I must create a user called pele_db_admin?

Thanks in advance.

Best regards,
M

pgsql-novice by date:

Previous
From: Lukasz Brodziak
Date:
Subject: Re: Overriding local encoding defaults
Next
From: Thom Brown
Date:
Subject: Re: Doubt with role creation