Share via

create cluster in windows server 2019

Glenn Maxwell 13,761 Reputation points
2021-02-06T15:07:06.107+00:00

Hi All

I want to create cluster in Windows Server 2019. is the below syntax correct.
i have node1 as 192.168.5.10 and node2 as 192.168.5.11

New-Cluster -Name clustername -Node ("node1","node2") –StaticAddress "192.168.5.0" -NoStorage -ManagementPointNetworkType Singleton

Windows for business | Windows Server | Storage high availability | Clustering and high availability
0 comments No comments

Answer accepted by question author

Xiaowei He 9,946 Reputation points
2021-02-08T07:01:16.2+00:00

Hi,

1.Generally, we can use the following command to create the cluster:

New-Cluster -Name clustername -Node node1,node2 -StaticAddress "x.x.x.x" -NoStorage

https://learn.microsoft.com/en-us/powershell/module/failoverclusters/new-cluster?view=win10-ps

I didn't find the parameter "ManagementPointNetworkType", and try to test in Powershell with "Tab" also not appear with it. So you may not add the -ManagementPointNetworkType.

2.Besides, it's not recommended to use the ending .0 and .255 to be static IP addresses. You may definite the cluster IP addresses with another one.

Thanks for your time!
Best Regards,
Anne


If the Answer is helpful, please click "Accept Answer" and upvote it.

Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

Was this answer helpful?

0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.