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
This is because the check that guards loading the propupulation data checks for /var/lib/ldap/DB_CONFIG, but that file is only created by the berkeley db backend of openldap, but the new default backend in openldap after version 2.5 has been changed to mdb. This means a freshly populated /var/lib/ldap looks like this:
$ ls -l /var/lib/ldap
total 64
-rw------- 1 openldap openldap 61440 Dec 8 13:04 data.mdb
-rw------- 1 openldap openldap 8192 Dec 8 13:04 lock.mdb
and the prepopulation code path will be run every time, failing on every start but the first.
The text was updated successfully, but these errors were encountered:
If prepopulation data is provided, the container only starts once and then never again:
This is because the check that guards loading the propupulation data checks for
/var/lib/ldap/DB_CONFIG
, but that file is only created by the berkeley db backend of openldap, but the new default backend in openldap after version 2.5 has been changed to mdb. This means a freshly populated/var/lib/ldap
looks like this:and the prepopulation code path will be run every time, failing on every start but the first.
The text was updated successfully, but these errors were encountered: