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
docker container v1.7.2 is based on debian 12 and when using it with windows AD / ldaps you'll get TLS: peer cert untrusted or revoked (0x42) as error message in debug docker logs, as well as Cannot access LDAP directory on the GUI.
the fix is to do a apt update && apt install libldap-common -y but not on the server where the docker container runs, but inside the docker container.
to do so, open a shell inside the conatiner like docker exec -it $CONTAINERNAME /bin/bash and install the package as described above; then do a docker restart $CONTAINERNAMEand it should be fine again.
Maybe the package can be included in new docker container versions?
Thanks.
The text was updated successfully, but these errors were encountered:
docker container v1.7.2 is based on debian 12 and when using it with windows AD / ldaps you'll get
TLS: peer cert untrusted or revoked (0x42)
as error message in debug docker logs, as well asCannot access LDAP directory
on the GUI.the fix is to do a
apt update && apt install libldap-common -y
but not on the server where the docker container runs, but inside the docker container.to do so, open a shell inside the conatiner like
docker exec -it $CONTAINERNAME /bin/bash
and install the package as described above; then do adocker restart $CONTAINERNAME
and it should be fine again.Maybe the package can be included in new docker container versions?
Thanks.
The text was updated successfully, but these errors were encountered: