I would like to access my PostgreSQL 8.3 database with the name of an existing user but, when I try, I get a password authentication failure. I am able to access the database by creating a new Postgres user:
postgres createuser -P newusername
So I tried createuser with the existing user name but it said that that user already existed and wouldn't let me create it.
In pga_hba.conf, I have:
host db_name all 0.0.0.0/0 md5
and it doesn't complain about the connection - only the password authentication. Is there a way to remotely access the database using an existing user?