-
- Run the Test-Cluster cmdlet.
Test-Cluster -Node node01,Node02,Node03,Node04 -Include 'Storage Spaces Direct', 'Inventory', 'System Configuration'
The Test-Cluster cmdlet generates an HTML report of all performed validations and includes a summary of the validations. Review this report, resolve all warnings and errors before creating a cluster. - Run the Get-PhysicalDisk command on all cluster nodes. Verify the output to ensure that all disks are in the healthy state and that the nodes have an equal number of disks. Verify that the nodes have homogenous hardware configuration.
Ensure all nodes are reachable using the IPs set in the previous step. Create a cluster using the New-Cluster cmdlet. New-Cluster -Name clusterName -Node node1,node2,node3,node4 -StaticAddress 192.168.10.100 -NoStorage -Verbose
- Exclude remote NDIS NIC (operating system to iDRAC pass-through) from cluster networks.
New-Item -Path HKLM:\system\currentcontrolset\services\clussvc\parameters
New-ItemProperty -Path HKLM:\system\currentcontrolset\services\clussvc\parameters -Name ExcludeAdaptersByDescription -Value "Remote NDIS Compatible Device“
Get-ItemProperty -Path HKLM:\system\currentcontrolset\services\clussvc\parameters -Name ExcludeAdaptersByDescription | Format-List ExcludeAdaptersByDescription