Squidly Asked: 2011-11-01 09:06:38 +0800 CST2011-11-01 09:06:38 +0800 CST 2011-11-01 09:06:38 +0800 CST Running Multiple LDAP trees OpenLDAP 772 Is it possible to have multiple seperate LDAP trees on a single LDAP server? ldap openldap 1 Answers Voted Best Answer Sven 2011-11-01T09:43:17+08:002011-11-01T09:43:17+08:00 Yes. You have to create multiple database entries in the base configuration and configure them with different Base DN's. This is done with the database statement in the /etc/openldap/slapd.conf. Example: database bdb suffix "dc=example,dc=com" rootdn "uid=root,cn=users,dc=example,dc=com" You will find more information in OpenLDAP's documentation. (Note: Of course, this should also be possible to be configured via the cn=config online configuration).
Yes. You have to create multiple database entries in the base configuration and configure them with different
Base DN
's.This is done with the
database
statement in the/etc/openldap/slapd.conf
.Example:
You will find more information in OpenLDAP's documentation.
(Note: Of course, this should also be possible to be configured via the
cn=config
online configuration).