Difference between revisions of "Manually Replicating Directory Partitions"
Mmuehlfeld (talk | contribs) (Added introduction and section titles) |
Mmuehlfeld (talk | contribs) m (Mmuehlfeld moved page Samba-tool drs replicate to Manually Replicating Directory Partitions: Renamed page. Title should tell something about the content (instead of just a command)) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
= Introduction = | = Introduction = | ||
− | In | + | In certain situations, it is necessary to manually replicate an Active Directory (AD) partition from one domain controller (DC) to another. |
+ | {{Imbox | ||
+ | | type = important | ||
+ | | text = If you manually replicate an AD partition between DCs that do not have a replication agreement, the content is replicated. However, this operation does not create the replication agreement. For further details, see [[The Samba KCC]]. | ||
+ | }} | ||
− | |||
− | To replicate | + | |
+ | = Manually Replicating Directory Partitions = | ||
+ | |||
+ | To manually replicate all AD partitions from domain controller <code>DC1</code> to <code>DC2</code>: | ||
# samba-tool drs replicate DC2 DC1 dc=samdom,dc=example,dc=com | # samba-tool drs replicate DC2 DC1 dc=samdom,dc=example,dc=com | ||
Line 26: | Line 32: | ||
Replicate from DC1 to DC2 was successful. | Replicate from DC1 to DC2 was successful. | ||
− | To resynchronise all objects | + | By default, the <code>samba-tool drs replicate</code> command replicates only object operations that were not ran on the destination DC. This includes: |
+ | * Create new objects | ||
+ | * Updated changed objects | ||
+ | * Delete removed objects | ||
+ | |||
+ | To resynchronise all objects in a partition, pass the <code>--full-sync</code> option to the command. |
Latest revision as of 21:23, 12 May 2017
Introduction
In certain situations, it is necessary to manually replicate an Active Directory (AD) partition from one domain controller (DC) to another.
![]() | If you manually replicate an AD partition between DCs that do not have a replication agreement, the content is replicated. However, this operation does not create the replication agreement. For further details, see The Samba KCC. |
Manually Replicating Directory Partitions
To manually replicate all AD partitions from domain controller DC1
to DC2
:
# samba-tool drs replicate DC2 DC1 dc=samdom,dc=example,dc=com Replicate from DC1 to DC2 was successful. # samba-tool drs replicate DC2 DC1 DC=ForestDnsZones,DC=samdom,DC=example,DC=com Replicate from DC1 to DC2 was successful. # samba-tool drs replicate DC2 DC1 CN=Configuration,DC=samdom,DC=example,DC=com Replicate from DC1 to DC2 was successful. # samba-tool drs replicate DC2 DC1 DC=DomainDnsZones,DC=samdom,DC=example,DC=com Replicate from DC1 to DC2 was successful. # samba-tool drs replicate DC2 DC1 CN=Schema,CN=Configuration,DC=samdom,DC=example,DC=com Replicate from DC1 to DC2 was successful.
By default, the samba-tool drs replicate
command replicates only object operations that were not ran on the destination DC. This includes:
- Create new objects
- Updated changed objects
- Delete removed objects
To resynchronise all objects in a partition, pass the --full-sync
option to the command.