[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
replicating a special objectclass with a seperate syncrepl statement
- To: "openldap-technical@openldap.org" <openldap-technical@openldap.org>
- Subject: replicating a special objectclass with a seperate syncrepl statement
- From: Al <afrunning@gmail.com>
- Date: Tue, 30 Apr 2013 08:34:07 -0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=+QMRCeBMT5I70sAVeSE5kasQyG3iAR75IQ4Yh9rLOZE=; b=FH2KRBpcJ6aCJp06anitEaRt1GUjhNPFPaI9ywBR9CaidNU0wVSEh0XuOz7WlsmCrW D0nwG5kcUEN3Tj/MrxrObcm0ijNIC9YgqY9nd6JMltB7BEC1FOSpqPMeIwmbVWSjzSge p+LF0rWiXY0uDYp+yPcThaAnnSuCZRgGDCxTcdlAza4UQA0Bl+d2kpYz9aOT8ajS953j O8zhnNbQOdvHCTn0BLIZwMe7NUA7hJsYIImZFcOwCATdw6ykEEg2fNlQIEQiL5DDRhJS i9vXpWV+tIVN0HBiNz+AgFPaETNsmOdiKx5pudRtFEnuaDje34pwcoPY+HXALxkw3BRV Ph5g==
Hi,
I am wondering if it is possible to have two syncrepl statements on a
consumer that pull from the same source, but do so with a different
set of parameters and filters that ensure their is no overlap. Below
is an example of what I am interested in trying:
olcSyncRepl: rid=001 provider=ldap://server1.example.com
binddn="MANAGERDN" bindmethod=simple
credentials=$PASSWD searchbase="$BASEDN" type=refreshAndPersist
retry="5 5 300 5" timeout=1 filter="(!(objectclass=mygroup))"
olcSyncRepl: rid=002 provider=ldap://server1.example.com
binddn="MANAGERDN" bindmethod=simple
credentials=$PASSWD searchbase="$BASEDN" type=refreshOnly
interval=00:00:10:00 retry="5 5 300 5" timeout=1
filter="(objectclass=mygroup)"
Basically, I am interested in syncing certain groups occasionally
(they have a custom objectclass), but everything else as quickly as
possible.
Thanks!
Al