From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | "lise chhay" <lise(dot)chhay(at)mail(dot)com> |
Cc: | pgsql-admin(at)postgresql(dot)org |
Subject: | Re: |
Date: | 2004-06-22 01:26:37 |
Message-ID: | 8580.1087867597@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
"lise chhay" <lise(dot)chhay(at)mail(dot)com> writes:
> J have created the user auth under Unix and I did :
> # su - postgres
> postgres$ createuser auth
> User auth created
> postgres$ psql auth
> auth=# INSERT INTO groupes (groupe, descr) VALUES ('auth', 'Administrateurs de la base Auth') ;
> auth=# INSERT INTO utilisateurs (login, password, nom, prenom) VALUES ('auth', 'tnnxiPQeNdFYs', 'auth', 'auth') ;
> auth=# INSERT INTO membres (login, groupe) VALUES ('auth', 'auth') ;
You have not set a Postgres password for this user. (I don't know what
"utilisateurs" is, but it's definitely not what Postgres will consult.)
Use the ALTER USER command to set the correct password.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | juanmime | 2004-06-22 14:32:18 | Problems restoring a DB with oids |
Previous Message | Tom Lane | 2004-06-22 01:05:29 | Re: UNDO |