34.16. The Password File error re windows pgpass.conf location

Started by PG Bug reporting formover 3 years ago3 messagesdocs
Jump to latest
#1PG Bug reporting form
noreply@postgresql.org

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/14/libpq-pgpass.html
Description:

On this page: https://www.postgresql.org/docs/current/libpq-pgpass.html
It incorrectly states:
%APPDATA%\postgresql\pgpass.conf
In reality this files needs to be placed here on a Windows system:
%APPDATA%\Roaming\postgresql\pgpass.conf
^^^^^^^^

Thanks,
rik

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: PG Bug reporting form (#1)
Re: 34.16. The Password File error re windows pgpass.conf location

PG Doc comments form <noreply@postgresql.org> writes:

On this page: https://www.postgresql.org/docs/current/libpq-pgpass.html
It incorrectly states:
%APPDATA%\postgresql\pgpass.conf
In reality this files needs to be placed here on a Windows system:
%APPDATA%\Roaming\postgresql\pgpass.conf
^^^^^^^^

Hmm ... that text has been like that since 2005, and you're the first
to report it's wrong. I suspect it's not wrong for the majority of
users, and instead there's something odd about your configuration.
I don't know enough about Windows to guess at exactly what.

regards, tom lane

#3Julien Rouhaud
rjuju123@gmail.com
In reply to: Tom Lane (#2)
Re: 34.16. The Password File error re windows pgpass.conf location

Hi,

On Mon, Aug 08, 2022 at 05:45:38PM -0400, Tom Lane wrote:

PG Doc comments form <noreply@postgresql.org> writes:

On this page: https://www.postgresql.org/docs/current/libpq-pgpass.html
It incorrectly states:
%APPDATA%\postgresql\pgpass.conf
In reality this files needs to be placed here on a Windows system:
%APPDATA%\Roaming\postgresql\pgpass.conf
^^^^^^^^

Hmm ... that text has been like that since 2005, and you're the first
to report it's wrong. I suspect it's not wrong for the majority of
users, and instead there's something odd about your configuration.
I don't know enough about Windows to guess at exactly what.

The code uses "CSIDL_APPDATA" for the root directory containing
postgresql/pgpass.conf. According to
https://docs.microsoft.com/en-us/windows/deployment/usmt/usmt-recognized-environment-variables,
it's the same as APPDATA, and the "Roaming" part should be part of it:

CSIDL_APPDATA
The file-system directory that serves as a common repository for
application-specific data. A typical path is C:\Documents and
Settings\username\Application Data or C:\Users\username\AppData\Roaming.

So it doesn't look like anything changed there recently, and maybe the OP did
some unusual configuration there.