I've been attempting to connect to my server's PostgreSQL database. The error message I am getting is "Error connecting to the server: FATAL: password authentication failed for user "postgres"
I've tried a whole bunch of things, but I think I'm just chasing my tail at this point.
Some of the things I've tried is multiple iterations of the pg_hba.conf file, such as changing md5 to password, all to template1, all to postgres, changing the password time limit to 'infinity,' commenting out sections of the pg_hba.conf file, and etc.
I did change the listen_adress to "*" in the postgres.conf file.
So, this is where the pg_hba.conf file is right now:
host all all machine.ip.address/16 password
I've attempted multiple masks, such as 16, 32, 24, etc.
I'm at an utter loss here. Just want to log into the server on my local machine and (hopefully) use PgAdmin. I'm guessing at that point that the problem is not in the pg_hba file, but I wouldn't know where to go from here.
I just upgraded to PostgreSQL 9.3. The server and the local machine are Arch Linux.
Thanks.