Re: psql: no chance to enter password in certain situations

From: John R Pierce <pierce(at)hogranch(dot)com>
To: Christoph Becker <cgbecker(at)gmx(dot)de>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: psql: no chance to enter password in certain situations
Date: 2005-01-12 23:32:06
Message-ID: 41E5B376.8070203@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-hackers-win32

Christoph Becker wrote:
> OS ist Windows XP Prof, PgSQL version is rc5 via windowsinstaller
> When trying to restore a db, psql does not ask for the password but
> responds imediately with an erromessage as in the following example:
>
> F:\doka\bak>psql -U postgres template1 < pg_dump_all_2005-01-11.txt
> Password:
> psql: FATAL: password authentication failed for user "postgres"
>
> However, in the following situation the password can still be entered as
> expected :
>
> F:\doka\bak>psql -U postgres template1
> Password:
> Welcome to psql 8.0.0rc5, the PostgreSQL interactive terminal.
> ......

try -f instead of < like...

psql -U postgres template1 -f pg_dump_all_2005-01-11.txt

btw, personal 'trick', to avoid having to specify template1, I generally
`createdb postgres` right after installing and doing the initdb. this way the
postgres DBA account has his own personal playpen for testing SQL and stuff.

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Steve Nicolai 2005-01-13 00:29:45 BUG #1394: LIKE doesn't seem to use an index
Previous Message Fahad 2005-01-12 23:08:55 BUG #1393: Adding 'LIMIT 1' to the query halts forever if no data present

Browse pgsql-hackers-win32 by date

  From Date Subject
Next Message Tom Lane 2005-01-13 02:46:29 Re: psql: no chance to enter password in certain situations
Previous Message Christoph Becker 2005-01-12 23:02:37 psql: no chance to enter password in certain situations