You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which fails on our server with and error Can't contact LDAP server. Not setting LDAP_USE_TLS results in an other error: Strong(er) authentication required as expected considering our server's settings.
I had to browse the source code to find the LDAP_USE_TLS parameter as it's not documented in the ldap section of your authentication documentation. Would it be possible to add the different available but undocumented options?
Upon further investigation running an ldapsearch inside the container using ldaps leads to
which can be resolved by manually installing the package libldap-common inside the container, or by mapping a single file ldap.conf containing the line
TLS_CACERT /etc/ssl/certs/ca-certificates.crt
to /etc/ldap/ldap.conf. I wonder whether the package libldap-common should be installed by the Dockerfile upon creating the container image?
Unfortunately I haven't been able to test the latest container yet. Please feel free to close this if it has already been fixed.
Cheers
The text was updated successfully, but these errors were encountered:
Hi,
I'm using the following to log in with ldap:
which fails on our server with and error
Can't contact LDAP server
. Not settingLDAP_USE_TLS
results in an other error:Strong(er) authentication required
as expected considering our server's settings.I had to browse the source code to find the LDAP_USE_TLS parameter as it's not documented in the ldap section of your authentication documentation. Would it be possible to add the different available but undocumented options?
Upon further investigation running an ldapsearch inside the container using ldaps leads to
which can be resolved by manually installing the package
libldap-common
inside the container, or by mapping a single file ldap.conf containing the lineto
/etc/ldap/ldap.conf
. I wonder whether the package libldap-common should be installed by the Dockerfile upon creating the container image?Unfortunately I haven't been able to test the latest container yet. Please feel free to close this if it has already been fixed.
Cheers
The text was updated successfully, but these errors were encountered: