[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Changing the top object
- To: openldap-technical@openldap.org
- Subject: Changing the top object
- From: Yeray Gutiérrez Cedrés <ycedres@gmail.com>
- Date: Wed, 12 Aug 2009 14:00:02 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=5gUgwEoyAcWgYCMvvZRoSx/fspmK/IRu9CKmMc5+8XQ=; b=higPLkJlBhuyd3RighLlrEWwA92ZQj2CCdZFZy8sY0TtjchTNwpWCe80C4AYY+q5Mi gxJvg1SqhIXiFlLOeDZziCSjgHGQTWoU9wKz3Bkl+T5Q7hBUWn197EymYYHOG++ShsU2 aHlKPBQ7Z93Bv9GuyP974o0f00o17imEpf6+s=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=knvnlOAN4aGIn17DSwqdyRaP8IWFxNOH45atUT+74GKlBbQHftKof5QzQXoLkM7Bbr dGLVyi6L1c8/sjuEBmL9sAdKjIos4Fnn4/E6BfFhDYSh7DRV/FQjYE1unXaCLXmCyJ+s 2dsMx9sDr2o65hmrA/fouZU6FnDjjc9XhFvJQ=
In the slapd.conf file of a provider server I have the following
suffix parameter:
suffix "dc=example,dc=org"
And with slapcat I see the followind:
dn: dc=example,dc=org
objectClass: top
objectClass: dcObject
objectClass: organization
o: example.org
dc: example
structuralObjectClass: organization
entryUUID: ead90d7a-c02b-102c-8c00-cb58049f9ef6
creatorsName:
modifiersName:
createTimestamp: 20080527112930Z
modifyTimestamp: 20080527112930Z
entryCSN: 20080527112930.000000Z#000000#000#000000
I wanted to set a consumer but I set the suffix parameter wrong:
suffix "dc=corp,dc=example,dc=org"
So this was created:
dn:
objectClass: top
objectClass: dcObject
objectClass: organization
o: corp.example.org
dc: corp
structuralObjectClass: organization
entryUUID: 29af5532-1abb-102e-9f19-896497a83f9b
creatorsName:
createTimestamp: 20090811120636Z
entryCSN: 20090811120636.425151Z#000000#000#000000
modifiersName:
modifyTimestamp: 20090811120636Z
Is there any way to change this? I also don't know why the dn in the
second case is empty (I thought it should be
dc=corp,dc=example,dc=org). If this can't be easily fixed, is there
any way of starting from scratch?
Regards.