| PostgreSQL Reference Manual - Volume 2 - Programming Guide by The PostgreSQL Global Development Group Paperback (6"x9"), 408 pages ISBN 0954612035 RRP £19.95 ($34.95) Sales of this book support the PostgreSQL project! Get a printed copy>>> |
1.13 The Password File
The file ‘.pgpass’ in a user's home directory or the
file referenced by PGPASSFILE can contain passwords to
be used if the connection requires a password (and no password has been
specified otherwise). On Microsoft Windows the file is named
‘%APPDATA%\postgresql\pgpass.conf’ (where
‘%APPDATA%’ refers to the Application Data subdirectory in
the user's profile).
This file should contain lines of the following format:
hostname:port:database:username:password
Each of the first four fields may be a literal value, or *,
which matches anything. The password field from the first line that matches the
current connection parameters will be used. (Therefore, put more-specific
entries first when you are using wildcards.)
If an entry needs to contain : or
\, escape this character with \.
A host name of localhost matches both TCP (hostname
localhost) and Unix domain socket (pghost empty or the
default socket directory) connections coming from the local machine.
The permissions on ‘.pgpass’ must disallow any
access to world or group; achieve this by the command
chmod 0600 ~/.pgpass.
If the permissions are less strict than this, the file will be ignored.
(The file permissions are not currently checked on Microsoft Windows,
however.)
| ISBN 0954612035 | PostgreSQL Reference Manual - Volume 2 - Programming Guide | See the print edition |