Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have installed PostgreSQL and pgAdminIII on my Ubuntu Karmic box.

I am able to use pgAdminIII successfully (i.e. connect/log on), however when I try to login to the server using the same username/pwd on the command line (using psql), I get the error:

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

Does anyone now how to resolve this issue?

share|improve this question

5 Answers

up vote 39 down vote accepted

Did you set the proper settings in pg_hba.conf?

See https://help.ubuntu.com/10.04/serverguide/C/postgresql.html how to do it.

share|improve this answer
5  
This doesn't work for me. I've spent hours on it! All I want to do is run psql commands in my terminal. What do I need to make the file look like to do this?? – Sean Aug 8 '11 at 13:00
2  
It works for me. – Tyler Long Nov 23 '11 at 2:43
2  
@SeanA you need something like 'sudo -u postgres psql' – JLarky Feb 16 '12 at 9:54
Don't forget to ';' at the end of every statement on psql. Sounds silly but it happens hehe. – omrsin Nov 22 '12 at 16:38
I had the same problem. After entry in hba.conf and restart it worked. Thanks for posting this. I think anyway postgresql is the most user unfriendly db in the Milkyway. No wonder that MySQL is much more popular. – Robert Reiz Jan 4 at 16:24
show 3 more comments

Edit the file /etc/postgresql/8.4/main/pg_hba.conf and replace ident by either md5 or trust, depending on whether you want it to ask for a password on your own computer or not. Then reload the configuration file with:

/etc/init.d/postgresql reload
share|improve this answer
3  
one command restart postgresql: /etc/init.d/postgresql restart – Tyler Long Nov 23 '11 at 2:44
6  
Why a restart when a reload is all you need? – Frank Heikens Jan 15 '12 at 8:01
In this case: "/etc/init.d/postgresql-8.4 reload" – user74283 Oct 16 '12 at 2:48

The following steps work for a fresh install of postgres 9.1 on Ubuntu 12.04

By default, postgres creates a user named 'postgres'. We log in as her, and give her a password.

$ sudo -u postgres psql
\password
Enter password: ...
...

Then we connect as 'postgres'. The -h localhost part is important: it tells the psql client that we wish to connect using a TCP connection (which is configured to use password authentication), and not by a PEER connection (which does not care about the password).

$ psql -U postgres -h localhost

I really wish they'd document all this in a more newcomer friendly fashion, instead of requiring a mandatory Google search and frustration.

share|improve this answer
4  
If you set PGHOST=localhost you don't need to specify the -h option every time. This also works with other pg_* commands such as pg_dump. – Sameer Aug 31 '12 at 18:39
It does documented in here: help.ubuntu.com/12.04/serverguide/postgresql.html – Hendra Uzia Sep 6 '12 at 9:26
1  
@Manav, You answer worked for me pretty good. Thank you – NeoRiddle Nov 18 '12 at 22:41
This was needed to enable a Mediawiki install on Debian with PostgreSQL. – mivk May 11 at 10:51

If you've done all this and it still doesn't work, check the expiry for that user:

Postgres password authentication fails

share|improve this answer

I found that I had to install an identity server, that listens on port 113.

sudo apt-get install pidentd
sudo service postgresql restart

And then ident worked.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.