Este conteúdo não está disponível no idioma selecionado.
Chapter 8. Comparing two Directory Server instances
You can verify that two Directory Server instances are synchronized using ds-replcheck
utility. You can compare two servers either online or using two LDIF-formatted files in offline mode.
8.1. Displaying the replication status of two Directory Server instances Copiar o linkLink copiado para a área de transferência!
You can use the ds-replcheck
utility to display the replication status of two Directory Server instances.
Procedure
Use the following command to display the replication status of two Directory Server instances:
ds-replcheck state -D "cn=Directory Manager" -W -m ldap://server1.example.com:389 -r ldap://server2.example.com:389 -b "dc=example,dc=com"
# ds-replcheck state -D "cn=Directory Manager" -W -m ldap://server1.example.com:389 -r ldap://server2.example.com:389 -b "dc=example,dc=com" Replication State: Replica is behind Supplier by: 264 seconds
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
8.2. Comparing two onlineDirectory Server instances Copiar o linkLink copiado para a área de transferência!
If you compare two online servers, the contents of the databases usually differ, if they are under heavy load. To work around this problem, the ds-replcheck
uses a lag time value by passing the -l time_in_seconds
parameter to ds-replcheck
. By default, this value is set to 300
seconds (5 minutes). If the utility detects an inconsistency that is within the lag time, the utility does not report it. This helps to reduce false positives.
By default, if you have excluded certain attributes in the replication agreement from being replicated, ds-replcheck
reports these attributes as different. To ignore these attributes, pass the -i attribute_list
parameter to the utility.
Procedure
To compare the
dc=example,dc=com
suffix ofsupplier.example.com
andreplica.example.com
online, enter:ds-replcheck online -D "cn=Directory Manager" -W -m ldap://supplier.example.com:389 -r ldap://replica.example.com:389 -b "dc=example,dc=com"
# ds-replcheck online -D "cn=Directory Manager" -W -m ldap://supplier.example.com:389 -r ldap://replica.example.com:389 -b "dc=example,dc=com"
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The
-m
and-r
parameters set the URLs to the supplier and replica.
8.3. Comparing offline two Directory Server instances Copiar o linkLink copiado para a área de transferência!
To compare two offline Directory Server instances, export the databases on both hosts and compare them using ds-replcheck
.
By default, if you have excluded certain attributes in the replication agreement from being replicated, ds-replcheck
reports these attributes as different. To ignore these attributes, pass the -i attribute_list
parameter to the utility.
Procedure
On the supplier, list the suffixes and their corresponding databases:
dsconf <instance_name> backend suffix list
# dsconf <instance_name> backend suffix list dc=example,dc=com (userroot) o=test (test_database)
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note the name or suffix of the database you want to compare.
Export the database while the instance is running:
dsconf <instance_name> backend export -r -l /var/lib/dirsrv/slapd-<instance_name>/ldif/export-supplier.ldif userRoot
# dsconf <instance_name> backend export -r -l /var/lib/dirsrv/slapd-<instance_name>/ldif/export-supplier.ldif userRoot
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The
-r
parameter ensures that the export includes replication state information, and-l
sets the path to the export file. Note that thedirsrv
user must have write permissions in the destination directory to create that file.- Repeat the previous steps on the replica you want to compare with the supplier.
Copy the exported file from one host to the other. For example, to copy the LDIF file from
replica.example.com
tosupplier.example.com
, enter the following command on the replica:scp /var/lib/dirsrv/slapd-<instance_name>/ldif/export-replica.ldif supplier.example.com:/var/lib/dirsrv/slapd-<instance_name>/ldif/
# scp /var/lib/dirsrv/slapd-<instance_name>/ldif/export-replica.ldif supplier.example.com:/var/lib/dirsrv/slapd-<instance_name>/ldif/
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note that this command requires that you can access the supplier using SSH.
On the supplier, compare the two LDIF files:
ds-replcheck offline -m /var/lib/dirsrv/slapd-<instance_name>/ldif/export-supplier.ldif -r /var/lib/dirsrv/slapd-instance_name/ldif/export-replica.ldif -rid 1 -b "dc=example,dc=com"
# ds-replcheck offline -m /var/lib/dirsrv/slapd-<instance_name>/ldif/export-supplier.ldif -r /var/lib/dirsrv/slapd-instance_name/ldif/export-replica.ldif -rid 1 -b "dc=example,dc=com"
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The
-m
and-r
parameters set the paths to the supplier and replica, and-rid
sets the replica identifier of the supplier.
8.4. Explanation of the ds-replcheck output Copiar o linkLink copiado para a área de transferência!
The output of the ds-replcheck
utility contains the following sections:
- Database RUV’s
Lists the Replication Update Vectors (RUV) of the databases including the minimum and maximum Change Sequence Numbers (CSN). For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Entry Count
Displays the total number of entries on the both servers, including tombstone entries. For example:
Supplier: 12 Replica: 10
Supplier: 12 Replica: 10
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Tombstones
Displays the number of tombstone entries on each replica. These entries are added to the total entry count. For example:
Supplier: 4 Replica: 2
Supplier: 4 Replica: 2
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Conflict Entries
Lists the Distinguished Names (DN) of each conflict entry, the conflict type, and the date it was created. For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Missing Entries
Lists the DNs of each missing entry and the creation date from the other server where the entry resides. For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Entry Inconsistencies
Lists the DNs of the entry that contain attributes that are different to those on the other server. If a state information is available, it is also displayed. If no state information for an attribute is available, it is listed as an origin value. This means that the value was not updated since the replication was initialized for the first time. For example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow