I am trying to connect to Openldap deployed using this project from Meteor, but the package I've found uses anonymous bind. Is it possible to setup anonymous bind with docker-openldap?
Hello,
anonymous auth is disabled in : https://github.com/osixia/docker-openldap/blob/stable/image/service/slapd/assets/config/bootstrap/ldif/02-security.ldif
2 options:
docker run -e KEEP_EXISTING_CONFIG="true" osixia/openldap
Thanks!
And what about simple authentication, allowing all authenticated users to bind?
Simple authentication is already possible, but users can do nothing except on their entry.
How to modify 02-security.ldif ? I tried mount https://github.com/osixia/docker-openldap/blob/stable/image/service/slapd/assets/config/bootstrap/ldif/02-security.ldif into docker.
BUT openldap failed to run. exited with status code 2
I am facing the same issue. I simply want to turn on anonymous access so that anyone can see the users, but then they would need to know the users actual password to be given access. I.e. I want to use LDAP to hold the credentials and tell me if they are a member of a certain 'Group' or not.