How do I install a secondary Active Directory (AD) domain controller (DC) to an existing domain?
Posted: (EET/GMT+2)
Adding a second domain controller increases redundancy and reliability in an Active Directory environment. The process is straightforward with Windows Server 2016 and later.
Here's a set of quick steps:
- Join the new server to the existing domain using the System Properties dialog or PowerShell:
Add-Computer -DomainName "mydomain.local" -Restart
- After reboot, open Server Manager and click Add Roles and Features.
- Select "Active Directory Domain Services".
- When the wizard completes, click "Promote this server to a domain controller".
- Choose "Add a domain controller to an existing domain".
- Provide credentials and select the domain.
- Check "DNS server" and "Global Catalog" as appropriate.
- Complete the wizard and restart the server.
Replication will begin automatically. You can verify it with:
repadmin /replsummary
Having at least two domain controllers per domain ensures users can still log in and services continue even if one DC is offline for maintenance or failure.
Safety first!