开发者

How to configure postgresql so it accepts login+password auth?

I have a fresh ubuntu 10.10 install with all updates and postgresql 8.4

In order for postgresql to accept login+password connections i have configured it via:

sudo su postgres
psql
ALTER USER postgres WITH PASSWORD 'password';
CREATE DATABASE myapp;
\q
exit
sudo vi /etc/postgresql/8.4/main/pg_hba.conf
change "local all all indent" to "local all all trust"

But, su开发者_如何学Pythonrprisingly, this is not working! The command

psql -U postgres password

Evaluates with error:

psql: FATAL:  Ident authentication failed for user "postgres"

Any hints how i can make the psql -U to work?


It is probably a good idea to leave the "postgres" user with ident authentication. By default I believe Ubuntu uses the "postgres" user to perform upgrades, backups, etc, and that requires that it is able to login without a specified password.

I recommend creating another user (probably with your own username) and giving it admin privileges as well. Then you can use that user with passwords on local connections.

Here is what the relevant parts of my pg_hba.conf look like:

# allow postgres user to use "ident" authentication on Unix sockets
# (as per recent comments, omit "sameuser" if on postgres 8.4 or later)
local   all   postgres                         ident sameuser
# allow all other users to use "md5" authentication on Unix sockets
local   all   all                              md5
# for users connected via local IPv4 or IPv6 connections, always require md5
host    all   all        127.0.0.1/32          md5
host    all   all        ::1/128               md5

Also note that psql -U postgres password will not do what you want. The password should never be specified on the commandline. That will try to login as user "postgres" to a database named "password".

You should use psql -U postgres myapp instead. Postgres will automatically prompt you for a password, if it is configured properly to require one.

In case we want the password be filled-in automatically, place it in $HOME/.pgpass file


I think your pg_ident.conf file is misconfigured. Also, have you tried

psql -U postgres -W


Another thing that can cause this is expired credentials. I don't think this happened in version 8, but in version 9 when you create a new role in pgadmin, it is created in an expired state and you need to change or clear the role's expiration date before you will be able to login with it.


You may find it helpful to create the database's user and schema in PostgreSQL:

  1. Log into PostgreSQL from the postgres user
$ sudo -u postgres psql postgres
  1. Once in, create the user and database
CREATE ROLE myuser LOGIN PASSWORD 'mypass';
CREATE DATABASE mydatabase WITH OWNER = myuser;
  1. Log into PostgreSQL from the new user account
$ psql -h localhost -d mydatabase -U myuser -p <port>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜