PostgreSQL and some related databases can store connection passwords in a file, commonly referred to as a .pgpass file.
To use a password file:
- In your home folder*, create the password file .pgpass
Example: C:\users\yourusername\.pgpass - Edit the file to hold your passwords as described in the PostgreSQL documention for The Password File
- Update your connection to use .pgpass as the authentication source (see Create a New Database Connection):
*The home folder varies with the operating system:
Windows | C:\Users\<user> (also %USERPROFILE%) |
Linux/UNIX | /home/<user> or /usr/home/<user> (also $HOME or ~) |
macOS | /Users/<user> (also $HOME or ~) |