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
Took me a while to find out, that's why I'm posting it here:
config.py
. In my case it's at/usr/share/pgadmin4/web/config.py
config_local.py
(in the same folder) and enter:MASTER_PASSWORD_REQUIRED=False
Some reference about config files: https://www.pgadmin.org/docs/pgadmin4/dev/desktop_deployment.html#configuration
EDIT: It looks like in higher versions (I now have pgAdmin4 4.26) the directory changed to
/usr/pgadmin4/web/
For those on windows, the
config.py
is located underor
Create
config_local.py
inside of that folder