Hi biswajitsahoocap, welcome to the community!
The following procedure to export the ldif files from each server for comparison and then initialize from a good replica is the simplest way to identify the missing entries and solve the replication mismatch:
Use the following commands to export and compare entries:
1. Export each DS instance
- export-ldif --backendID userRoot --ldifFile export1.ldif
- export-ldif --backendID userRoot --ldifFile export2ldif
2. grep “^dn: ” export1.ldif > dns1
3. grep “^dn: ” export2.ldif > dns2
4. diff dns1 dns2
To resolve the issue, you will need to initialize the replication on the ‘bad’ node from the ‘good’ node. When we refer to ‘good’ and ‘bad’, ‘good’ means the node with the most accurate entries for your whole topology.