[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Just organizationalUnits objects copied doing sync replication
- To: openldap-technical@openldap.org
- Subject: Just organizationalUnits objects copied doing sync replication
- From: Yeray Gutiérrez Cedrés <ycedres@gmail.com>
- Date: Wed, 12 Aug 2009 23:17:47 +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=CSklAnoOffVOMuA/1SpkbWmXl1P++OUD0mrrpBMKvQ4=; b=tzFS+x/nMbVRlNZ8SiNdHAmEVxeYYXFRBR1fgqdrGpqMAF8syRJY5q7nQC1NRtHtjt vZFKtnrxSyym7TKNezTdXIlqvscyOEV5J+dUYj59/kU2HNgnVwQsrGMZpnxb3/EhjwN+ PrP5bDRIPh/k4vA4g7U5HoMtaVhauezL8CmsE=
- 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=fkHhDUTaRQRgmCX09uu01joWTlczdOpROd/SX6s+vFpE3YeNEQAtpHm1HALIhpN/2i 4l540924mdNzv9mvxbcvrYDYo/MtU0SxIsXtvHcUnP9McDyr9qjkhUneJpMs/46qeQTz v5aBQOYn73TcM/xpB0s9pEG9E/rgbJCDJHgBs=
I'm trying to replicate an openldap database from a consumer like this:
index objectClass,entryCSN,entryUUID eq
overlay syncprov
syncprov-checkpoint 100 10
syncprov-sessionlog 100
To a provider like this:
index objectClass,entryCSN,entryUUID eq
syncrepl rid=123
provider=ldap://10.140.200.3:389
type=refreshOnly
interval=00:00:00:01
searchbase="dc=example,dc=org"
scope=sub
attrs="*"
schemachecking=off
bindmethod=simple
binddn="cn=admin,dc=example,dc=org"
credentials="mypassword"
The provider database is completely emtpy and I want the provider to
copy the whole database. The only objects that are copied are the
organizationalUnit class objects. The objects that are "under" the
organizationalUnits (like for example a 'person' objetct) are not
being copied. What could be the reason for that?
Regards.