[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Mirror mode replication problem
- To: "openldap-technical@openldap.org" <openldap-technical@openldap.org>
- Subject: Mirror mode replication problem
- From: cbulist <cbulist@gmail.com>
- Date: Fri, 19 Oct 2012 10:09:14 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=hovDkOdmTVuIVu2qN1rOeBMvFrA1laV9aWaKHVYfa5A=; b=M86gyMISpB2DfW9S9DEW/c4Rkae+8mV2+nS3eZFRjOa+DmI8ozvyKXiIONdYzgN7rn 4d1108OU8lQEYogFnqIlhrSYZNOUyES0eFU5hobAf9sNXP9uajz/GCQMg5KVzZgo9Kvi F/GGoySJL+S1rFklUzjwKg/cP3Mr0nztL8PAlgyiKacHUexb/nFF9l28exKyKMEWyJEH cB4CZR9/b2X17GTIKM9a4eGbHog9DNvQ3b1OwOaf1CjrD32/8+dchdqwBM4/Z/fh5RYl tcnsGSwi5Ys9q4S/BTlp8lTcKuwLZnohrZtYkvq3LLBs3DJI1Hcch31KOFCU5q7eHxkh 08iQ==
- User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.24) Gecko/20111108 Fedora/3.1.16-1.fc14 Thunderbird/3.1.16
Hi,
We have configured 2 server with openldap 2.4.23-26 version and
everything is working well (ppolicy,acl etc). We implemented replication
in mirror mode and it is working well. When we add/delete/modify
something in serverID 1 it sync the data to serverID2 without problem
but when we add/delete/modify in serverID 2 it is not sync to serverID
1. We tried to stop openldap server1 then make changes on server2 and
start server 1 again in order to get the changes from server2 but it did
not work. According to 2.4 guide: "When a crashed provider is repaired
and restarted it will automatically catch up to any changes on the
running provider and resync".
We appreciate any help to try fix this problem.
Thanks in advance!
This is the relevant configuration directives:
#Server 1
overlay syncprov
syscprov-checkpoint 100 10
syscprov-sessionlog 100
serverID 1
syncrepl rid=001
provider=ldap://server2:389
bindmethod=simple
binddn="cn=Manager,dc=sample,dc=com"
credentials=secret
searchbase="dc=sample,dc=com"
schemachecking=on
type=refreshAndPersist
retry="60 +"
mirrormode on
#Server 2
overlay syncprov
syscprov-checkpoint 100 10
syscprov-sessionlog 100
serverID 2
syncrepl rid=001
provider=ldap://server1:389
bindmethod=simple
binddn="cn=Manager,dc=sample,dc=com"
credentials=secret
searchbase="dc=sample,dc=com"
schemachecking=on
type=refreshAndPersist
retry="60 +"
mirrormode on