I've installed PostgreSQL 9.1 and pgadmin3 on Ubuntu Server 13.10.
I configured postgresql.conf with: listen_addresses = '*'
also I configured ph_hba.conf by changed peer connections to md5
Plus I reset the password of postgres by: sudo password postgres
then restarted the service with sudo /etc/init.d/postgresql restart
after that I tried to connect to the default PostgreSQL template database:
sudo -u postgres psql template1
but login failed with this error message:
psql: FATAL: password authentication failed for user "postgres"
then I tried to login from the pgadmin, which gave me the same error.
I've read here that it might be a password expiry dates bug PostgreSQL user can not connect to server after changing password
but I couldn't solve it coz I cannot login with psql. Does anyone now how to resolve this issue?
EDIT
ph_hba file:
Screenshot:
You are confusing the password for the Unix user "postgres" with the database password for the database user "postgres". These are not the same.
You've locked yourself out, because you enabled
md5
authentication for database userpostgres
without setting a password for the database userpostgres
.Add a new line to the top of
pg_hba.conf
:Then restart/reload PostgreSQL:
and run:
From the resulting prompt:
remove the line you added to
pg_hba.conf
and restart Pg again. You can now use the password you set above to connect to PostgreSQL as thepostgres
user.To learn more, read the "client authentication" chapter of the user manual and the docs on
pg_hba.conf
.Try to modify the password of the database template1 using this:
in your pg_hba.conf
if it does not work then try with
then restart your data base it will work fine.. if you make trust then there is no need for password if you make MD5 then it will ask password...