Re: Why can't I change a password <SOLVED>

From: Steve Litt <slitt(at)troubleshooters(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Why can't I change a password <SOLVED>
Date: 2011-01-16 21:39:58
Message-ID: 201101161639.59010.slitt@troubleshooters.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sunday 16 January 2011 16:02:12 Raymond O'Donnell wrote:

> If you have configured PG to listen on a TCP/IP port (5432 by default),
> you can also do:
>
> psql -U postgres -h localhost super
>
> Ray.

Thanks Ray,

My psql seems a lot different from others. Loook what happened:

slitt(at)mydesk:~$ psql -U postgres -h localhost super
Password for user postgres:
psql: FATAL: password authentication failed for user "postgres"
FATAL: password authentication failed for user "postgres"
slitt(at)mydesk:~$ psql -U postgres -h 127.0.0.1 super
Password for user postgres:
psql: FATAL: password authentication failed for user "postgres"
FATAL: password authentication failed for user "postgres"
slitt(at)mydesk:~$

My postgresql.conf configures the port at 5433 instead of 5432, so I also
tried this:

slitt(at)mydesk:~$ psql -U postgres -h localhost -p 5433 super
Password for user postgres:
psql: FATAL: password authentication failed for user "postgres"
FATAL: password authentication failed for user "postgres"
slitt(at)mydesk:~$

Thanks

Steve

Steve Litt
Recession Relief Package
http://www.recession-relief.US
Twitter: http://www.twitter.com/stevelitt

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Andrus Moor 2011-01-16 21:44:08 Re: How to generate unique invoice numbers for each day
Previous Message Raymond O'Donnell 2011-01-16 21:02:12 Re: Why can't I change a password <SOLVED>