Hyper-converged solution in Windows Server
  • Introduction
  • Intro
    • Introduction
    • Requirements
    • Topology
  • Preparing the servers
    • Server 1: The Domain Controller
    • Prepping the 2 HC servers
    • Server 2: HyperConvergence 1
    • Server 3: HyperConvergence 2
  • Set up the Fail over cluster with storage spaces direct
    • Test the cluster
    • Build the cluster
    • Add a cluster witness
    • Clean the disks
    • Enable storage spaces direct
    • Create cluster-volumes
  • Setup Hyper-V and test
    • The next steps
    • Edit Hyper-V Paths
    • Create a High Available VM
    • Test it
    • Where to go from here
  • Extra
    • Add a 3rd node
Powered by GitBook
On this page

Was this helpful?

  1. Preparing the servers

Server 2: HyperConvergence 1

PreviousPrepping the 2 HC serversNextServer 3: HyperConvergence 2

Last updated 5 years ago

Was this helpful?

Run this script on your node # 1 to swiftly set it up , rename wherever you feel like

New-NetIPAddress -InterfaceAlias ethernet -IPAddress 192.168.1.11 -PrefixLength 24 -AddressFamily IPv4
Set-DnsClientServerAddress -InterfaceAlias ethernet -ServerAddresses 192.168.1.10
Add-Computer conlab.local -Credential conlab.local\Administrator -NewName HC1 -Restart

Don't forget to add the domain Administrator password ;)

Next, add the necessary roles to get the show moving on!

Install-WindowsFeature -Name "Failover-Clustering","Hyper-V","RSAT-Clustering-PowerShell","Hyper-V-PowerShell" -includemanagementtools -Restart