Re: default password for user postgres
От | John R Pierce |
---|---|
Тема | Re: default password for user postgres |
Дата | |
Msg-id | 4D958A35.8030501@hogranch.com обсуждение исходный текст |
Ответ на | default password for user postgres (Raphael Giovanini <raphaelgiovanini@gmail.com>) |
Список | 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 по дате отправления: