When starting pgAdmin, I'm prompted:
Please set a master password for pgAdmin
This is a new feature of pgAdmin4 4.7: https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_4_7.html
How can I disable this?
The local documentation tells me to set the "configuration parameter" MASTER_PASSWORD_REQUIRED=False, but I don't know where/how to do this:
http://127.0.0.1:37059/help/help/master_password.html
~/.config/pgadminand then add this directory to the Python path setting in~/.config/pgadmin/pgadmin4.conf, something likePythonPath=/home/«username»/.config/pgadmin:/usr/local/lib/python3/dist-packages:/usr/lib/python3/dist-packages– RolKau Jun 18 '19 at 21:47config.pyshould be inContents/Resources/web/. Find the line withMASTER_PASSWORD_REQUIRED=True, and change it toFalse. – amball Dec 30 '20 at 17:28ALLOW_SAVE_PASSWORD = Falsetoo? The documentation explains why it's not a very good idea to save passwords without a master password set. – jrh Feb 28 '21 at 18:45