[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
One root and two domain?
- To: openldap-technical <openldap-technical@openldap.org>
- Subject: One root and two domain?
- From: gael therond <gael.therond@gmail.com>
- Date: Wed, 12 Jan 2011 15:58:28 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:date:message-id:subject:from:to :content-type; bh=4iQIjVTi5F30uI48Cj0zTMTH7i0UbNuFdyyvAyCBwWQ=; b=aQo03lpfySFNn1MeB9H28iDuvWnlsIk706kzlAZhwbEbgCT20ufA1+QTyZ/y3oDPkx T7OPWxmW3HvzHDLdoEVnW2iIiMiYOMkz209VaJPVnHImWfrBxOleSs48e8cFRDV/QwbO ddNiHtvjplSd3dLGAawO7SKcOmOip0YNzMMaE=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=vKOSaQHF9ZPEMrwWcfZJrkMhxXKKbB2T50wUFYIw5REQDPZvWcxCoOLCjsa01Dh9N8 LRZOHFnRwBqFnN0hxdHSh7OYFcFPme8FVllHUBQvGK/GStPQ7+f2hQKr5/pYUSVHh9+o Z8akiZgvBlUwiQwgi8EOkdFN6i6iVjIP+6jQ8=
Is it possible to add a domain on an already existing root?
I got the following root for now:
dc=lab,dc=corp
and I want to create a second Top entry on my root which will be named like this:
dc=prod,dc=corp
Is that possible?
I've try the following syntaxe without succes.
Racine.ldif:
#Racine
dn: dc=prod, dc=corp
ObjectClass: Top
ObjectClass: dcObject
ObjectClass: organization
o: prod.corp
dc: prod
#OU Groups
dn: ou=groups, dc=prod, dc=geka
ObjectClass: organizationalUnit
ObjectClass: top
ou: groups
#OU Users
dn: ou=users, dc=prod, dc=geka
ObjectClass: organizationalUnit
ObjectClass: top
ou: users
And then I've done the usual LdapADD command, but with the following error returned:
ldap_add: Server is unwilling to perform (53)
Additional info: No global Superior Knowledge.
Well, my guest is that I didn't set correctly Slapd because my default root is lab.corp instead of being TLD .corp
Is that theory right?
Many thanks