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
It fails because variables LDAP_BASEDN and LDAP_DOMAIN are not set, but script /rootfs/etc/cont-init.d/050-openldap-populate references them.
Reason is the set -eux on top which makes every non-set variable an error.
Therefore the script breaks and does not stop the database, which, as consequence, raises the database already in use error.
I will file a pull request for that.
The text was updated successfully, but these errors were encountered:
After building the container locally, I had the same issue as #42 and could solve that with https://github.com/jskacel 's proposal:
https://github.com/rroemhild/docker-test-openldap/blob/master/rootfs/opt/openldap/bootstrap/config/tls.ldif#L3-L5
However, the script broke again:
It fails because variables
LDAP_BASEDN
andLDAP_DOMAIN
are not set, but script/rootfs/etc/cont-init.d/050-openldap-populate
references them.Reason is the
set -eux
on top which makes every non-set variable an error.Therefore the script breaks and does not stop the database, which, as consequence, raises the
database already in use
error.I will file a pull request for that.
The text was updated successfully, but these errors were encountered: