Say you're seeing this message:
FATAL: Ident authentication failed for user "..."
What are the causes of this error message?
Say you're seeing this message:
FATAL: Ident authentication failed for user "..."
What are the causes of this error message?
It means that Postgres is trying to authenticate a user using the Ident protocol, and can't. Ident auth automatically matches Unix usernames with Postgres usernames. It works like this:
pg_hba.conf
file (in/etc/postgres-something/main
) defines 'Ident' as the protocol to connect to databasedb
for users connecting from certain hostsPossible causes and solutions:
There is no Ident server running on the machine you're trying to connect from. Test this by trying to connect to it on port 113. If that fails, install an Ident server (eg,
sudo apt-get install oidentd
).There's an Ident server, but there's no database role matching the name you're trying to connect with ('foo' in the above example). So create it by connecting somehow to the database with superuser rights and do
CREATE ROLE foo
. Alternatively add an entry to/etc/postgresql/.../main/pg_ident.conf
(or/var/lib/pgsql/12/data
or wherever).Maybe the shell username doesn't match the database role. You may be able to test this by connecting to the Ident server while a connection is going on, and passing the right port numbers.
Maybe you actually want to connect with a password, not Ident. Edit the
pg_hba.conf
file appropriately. For example, change:to
Be sure to restart Postgres after updating the
pg_hba.conf
file. You do that by issuing the following command:Not sure about the causes, but this fixed it for me:
in
pg_hba.conf
change to this:
Exact error:
Caused by: org.postgresql.util.PSQLException: FATAL: Ident authentication failed for user "postgres"
On CentOS, add the following line to
/var/lib/pgsql/9.3/data/pg_hba.conf
:And comment out the other entries.
Of course, this setting is not secure, but if you're just messing about on a development VM like me then it's probably fine...
For Centos 7, Change pg_hba.conf to below:
Try to use -h 127.0.0.1 instead of -h localhost
If you have not tried this already, review your pg_hba.conf file. It will be named something like /var/lib/pgsql/9.3/data/pg_hba.conf (Fedora 20); you may have to use 'find / -name pg_hba.conf' to locate it.
At the bottom of the file, change the 'METHOD' values to 'trust' for local testing (see postgres docs for full information). Reboot the machine to ensure everything is started clean and the new params are read.
Hopefully this will cure your woes. It solved my problems on Fedora 20 with PostgreSQL 9.3.