Re: default password for user postgres - Mailing list pgsql-bugs

From John R Pierce
Subject Re: default password for user postgres
Date
Msg-id 4D958A35.8030501@hogranch.com
Whole thread Raw
In response to default password for user postgres  (Raphael Giovanini <raphaelgiovanini@gmail.com>)
List pgsql-bugs
On 03/31/11 6:50 PM, Raphael Giovanini wrote:
> I`m change the default passwod, and not conect for this user. What the
> default password?

there is no default password.  on most unix and linux distributions, the
default authentication mode is set to 'ident' which means a given unix
user X can only connect as the postgres user X.   initially, the only
postgres user is 'postgres', so...

(assuming you're on the typical unix/linux system, you didn't say)

     $ sudo -u postgres psql

     postgres=> alter user postgres password 'apassword';
     postgres=> create user yerusername createdb createuser password
'somepass';
     postgres=> create database yerusername owner yerusername;
     postgres=> \q

     $ ...

now as your regular user 'yerusername' you can connect to postgres, and
have the privileges to create new users and databases.

That sequence also modified the postgres user's password in case you
change the default authentication method to md5 (this is set in
pg_hba.conf, see the documentation for more details)

pgsql-bugs by date:

Previous
From: Raphael Giovanini
Date:
Subject: default password for user postgres
Next
From: "Sumit"
Date:
Subject: BUG #5962: Problem Acessing Network Path