-
Building guest (virtual) Failover Cluster on Hyper-V host with Windows Server 2012 R2 – Part 2 – Install and configure cluster
Prerequisites of Failover Clustering Domain join Join to the domain. PowerShell $domain = ‘ad.contoso.com’ $userName = ‘UserWithPermissionsToAddComputerIntoDomain’ $password = ‘Your-Password’ | ConvertTo-SecureString -AsPlainText -Force $login = ‘{0}\{1}’ -f $domain, $userName $credential = New-Object System.Management.Automation.PSCredential($login, $password) Add-Computer -DomainName $domain -Credential $credential -Restart Configure storage Online all disks on all nodes. Initialize and format disks on one…
-
Implementing Windows Server 2012 R2 Hyper-V Failover Cluster – Part 4 – Cluster storage and quorum configuration
This article is not part of the Building Microsoft System Center Cloud series but we will use the new cluster to host our VMs in the cloud series. In the previous article I did not let the Create Cluster Wizard to do automatic configuration of the storage because the storage was not available for the…