I have an LDAP server with "dc=domain1,dc=com"
as the olcSuffix. I would like to create a second domain "dc=domain2,dc=com"
on the same server.
Using this LDIF file:
dn: olcDatabase={3}bdb objectClass: olcDatabaseConfig objectClass: olcBdbConfig olcDatabase: {3}bdb olcSuffix: dc=domain2,dc=com ...
I got an error :
"no global superior knowledge" error because dc=domain2,dc=com does not fit below the existing dc=domain1,dc=com tree.
My question is how do I run two separate domains side by side in openldap? Do I have to create a "dc=com"
root and move the existing "dc=domain1"
beneath that and then create "dc=domain2"
, or is there someway to support both trees independently in the same server?
As far as I know, One OpenLDAP server can have multiple DIT. I think what you want is to add a new DIT.
To add a new DIT, you should do:
make a directory for it,and set the privilege.
add a config to OpenLDAP server.
add the entry and RootDN.
I now use Ubuntu 14.04.3 LTS,OpenLDAP 2.4.31 (installed by apt-get), some command may need sudo if you not use root account.
First,make the dir for new database
Second, config cn=config
check the module
if back_bdb is not loaded:
check the Backend
if no bdb Backend
generate a password(here the passwd is 123456)
configure the database in cn=config
add the database DIT
Now, you can access the new DIT (I use LDAP Admin)