The second part of the Active Directory Installation Guide deals with the installation of the second Active Directory backup server. All accounts and computers joined to the domain are synchronized between all servers in the same domain or tree. After the failure of one domain controller, it is possible to come to the other domain controller without failure.
- Connect the server to an existing Active Directory structure.
2. Install Active Directory
3. Configure the Active Directory DC2 server
You can set up an ActiveDirectory server using the PowerShell command:
Import-Module ADDSDeployment
Install-ADDSDomainController `
-NoGlobalCatalog:$false `
-CreateDnsDelegation:$false `
-Credential (Get-Credential) `
-CriticalReplicationOnly:$false `
-DatabasePath "C:\Windows\NTDS" `
-DomainName "mhasin.local" `
-InstallDns:$true `
-LogPath "C:\Windows\NTDS" `
-NoRebootOnCompletion:$false `
-SiteName "Default-First-Site-Name" `
-SysvolPath "C:\Windows\SYSVOL" `
-Force:$true
Odborník na kybernetickú bezpečnosť, správu Azure Cloud a VMware onprem. Využíva technológie, ako Checkmk a MRTG, na monitorovanie siete a zvyšovanie efektívnosti a bezpečnosti IT infraštruktúry.