Re: Setting postgres user's password when running initdb - Mailing list pgsql-novice

From Tom Lane
Subject Re: Setting postgres user's password when running initdb
Date
Msg-id 10933.1376503609@sss.pgh.pa.us
Whole thread Raw
In response to Setting postgres user's password when running initdb  (Edd Grant <edd@eddgrant.com>)
Responses Re: Setting postgres user's password when running initdb
List pgsql-novice
Edd Grant <edd@eddgrant.com> writes:
> My first time using postgres and I'm struggling setting the postgres user's
> password. Am using 9.2 btw,

> When prompted I type the password contained in
> /etc/pgsql/9.2/postgres.password but I get the following error:
> psql: FATAL:  Peer authentication failed for user "postgres"

This indicates that the database is not using password authentication;
it's using peer authentication, which basically checks that your actual
OS user name matches the database user name you want to log in as.

You could edit pg_hba.conf to fix this, or if you want to start over
there's a --auth switch for initdb.  Either way you want to select
the "md5" auth method not the "peer" method.

Another thing that would be worth checking is whether "service postgresql
initdb" is passing through any of those arguments at all.  I'm not real
sure that "service" makes that possible, nor that everyone's versions
of the init script do it even if it's possible.

The most robust way of dealing with this sort of thing is to not force the
issue, but just use peer auth initially --- that is, su to the postgres
account and then psql should let you in.  After that you can create more
users, set database passwords, and adjust the auth method to your taste.

It's worth reading most of this chapter:
http://www.postgresql.org/docs/9.2/static/client-authentication.html
Password auth is not the be-all and end-all; frequently, people end up
preferring peer auth anyway for local connections, so the default you're
getting here is not insane.

            regards, tom lane


pgsql-novice by date:

Previous
From: Edd Grant
Date:
Subject: Setting postgres user's password when running initdb
Next
From: Edd Grant
Date:
Subject: Re: Setting postgres user's password when running initdb