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?