Re: pgAdmin4 web ldap authtification

2023-11-07 Thread Stefan Harbich
Hello, i found the solution. here my config_local.py ... /pgadmin4 # cat config_local.py AUTHENTICATION_SOURCES = ['ldap','internal'] LDAP_SERVER_URI = 'ldaps://ldap.intern.example.de' LDAP_USERNAME_ATTRIBUTE = 'uid' LDAP_BASE_DN = 'ou=users,dc=example,dc=de' LDAP_SEARCH_BASE_DN = 'ou=users,dc=e

Re: pgAdmin4 web ldap authtification

2023-11-07 Thread Stefan Harbich
Hello, for your information an entry from the LDAP and the config_local.py LDAP configuration for pgAdmin. ldapsearch -x -H ldaps://ldap.intern.example.de uid=stefan.example ... # extended LDIF # # LDAPv3 # base (default) with scope subtree # filter: uid=stefan.example # requesting: ALL # # st

Re: pgAdmin4 web ldap authtification

2023-11-06 Thread Khushboo Vashi
On Tue, Nov 7, 2023 at 1:58 AM Stefan Harbich wrote: > Hello, > > i created the file config_local.py in the config.py directory. Now I get > the following error message. > ... > 2023-11-06 20:22:52,271: ERROR pgadmin: > pgadmin.authenticate.AuthSourceRegistry 'l' has not been implemented. > Trace

Re: pgAdmin4 web ldap authtification

2023-11-06 Thread Stefan Harbich
Hello, i created the file config_local.py in the config.py directory. Now I get the following error message. ... 2023-11-06 20:22:52,271: ERROR pgadmin: pgadmin.authenticate.AuthSourceRegistry 'l' has not been implemented. Traceback (most recent call last): File "/venv/lib/python3.11/site-packages

Re: pgAdmin4 web ldap authtification

2023-11-05 Thread Khushboo Vashi
On Sat, Nov 4, 2023 at 2:06 AM Stefan Harbich wrote: > Hello, my dears, > > i can't get the LDAP login user to pgAdmin on the website. In Docker > Bash, I created the file config_local.py with the following content in > the “/var/lib/pgadmin” directory. > ... > AUTHENTICATION_SOURCES = ['ldap','i

pgAdmin4 web ldap authtification

2023-11-03 Thread Stefan Harbich
Hello, my dears, i can't get the LDAP login user to pgAdmin on the website. In Docker Bash, I created the file config_local.py with the following content in the “/var/lib/pgadmin” directory. ... AUTHENTICATION_SOURCES = ['ldap','internal'] LDAP_SERVER_URI = 'ldap://:10389' LDAP_USERNAME_ATTRIBUTE