Curtain2021 - Today I used the example docker-c...
Today I used the example docker-compose.yaml. Worked well without LDAPS options. As soon as I activate the LDAPS options the container remains in "exited" status.
I created .crt and .key with openssl.
Used
- LLDAP_LDAPS_OPTIONS__ENABLED=true
- LLDAP_LDAPS_OPTIONS__CERT_FILE=/path/to/certfile.crt
- LLDAP_LDAPS_OPTIONS__KEY_FILE=/path/to/keyfile.key
Appriciate a manual for that5 Replies
Did you check the container logs?
not yet
Solution
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
Container now healthy. Did the following:
volumes: - "/home/user/ldap-certificates/ldapserver.crt:/certs/ldapserver.crt" - "/home/user/ldap-certificates/ldapserver.key:/certs/ldapserver.key" environment: - LLDAP_LDAPS_OPTIONSENABLED=true - LLDAP_LDAPS_OPTIONSCERT_FILE=/certs/ldapserver.crt - LLDAP_LDAPS_OPTIONS__KEY_FILE=/certs/ldapserver.key
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View