Docker LDAP TLS certificate not found
Installed OpenLDAP using the command ' docker run -p 389:389 -p 636:636 --volume /Users/king:/container/service/slapd/assets/certs --env LDAP_DOMAIN="ldap.com" --env LDAP_ADMIN_PASSWORD="pasword" --env LDAP_TLS_CRT_FILENAME=server. crt --env LDAP_TLS_KEY_FILENAME=server. key --env LDAP_TLS_CA_CRT_FILENAME=ca. crt --detach osixia/openldap:1.5.0 --loglevel error'. When attempting to connect to it using Spring LDAP, received the error message 'TLS: can't accept: No certificate was found.. 641dd069 conn=1000 fd=12 closed (TLS negotiation failure),How can we resolve this?
run with --env LDAP_TLS_VERIFY_CLIENT=try. For self signed certificates, it fails to connect from the outside.