Windows Server Failover Clustering : Install2024/12/23 |
|
Configure Windows Server Failover Clustering (WSFC).
This example is based on the environment like follows.
|
+----------------------+ | +----------------------+
| [ AD DS ] |10.0.0.100 | 10.0.0.110| [ iSCSI Target ] |
| fd3s.srv.world +-----------+-----------+ tgt01.srv.world |
| | | | |
+----------------------+ | +----------------------+
|
+----------------------+ | +----------------------+
| [ Cluster Node#1 ] |10.0.0.101 | 10.0.0.102| [ Cluster Node#2 ] |
| rx-7.srv.world +-----------+-----------+ rx-8.srv.world |
| | | |
+----------------------+ +----------------------+
|
| [1] |
Install and Configure AD DS in your local network, refer to here. |
| [2] | |
| [3] | On CUI Installation, run PowerShell and Set like follows. Configure on all Cluster Nodes. (on this example, they are [rx-7.srv.world] and [rx-8.srv.world]) |
Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved. # install WSFC with administration tools # administration tools are not required on all Nodes, # so OK to install only a Node, then remove [-IncludeManagementTools] option PS C:\Users\Serverworld> Install-WindowsFeature Failover-Clustering -IncludeManagementTools Success Restart Needed Exit Code Feature Result ------- -------------- --------- -------------- True No Success {Failover Clustering, Remote Server Admini... # increase [MaxEnvelopeSizekb] # * the default value (500) is insufficient PS C:\Users\Serverworld> Set-WSManInstance -ResourceURI winrm/config -ValueSet @{MaxEnvelopeSizekb="1024"} cfg : http://schemas.microsoft.com/wbem/wsman/1/config lang : en-US MaxEnvelopeSizekb : 1024 MaxTimeoutms : 60000 MaxBatchItems : 32000 MaxProviderRequests : 4294967295 Client : Client Service : Service Winrs : Winrs |
|
Windows Server Failover Clustering : Install (GUI)
|
|
On GUI Installation, Configure like follows. |
|
| [4] | Run [Server Manager] and click [Add roles and features]. |
|
| [5] | Click [Next] button. |
|
| [6] | Select [Role-based or feature-based installation]. |
|
| [7] | Select a Host which you'd like to add services. |
|
| [8] | Click [Next] button. |
|
| [9] | Check a box [Failover Clustering]. |
|
| [10] | Addtional features are required to add. Click [Add Features] button and then Click [Next] button. However, administration tools are not required on all Nodes in Cluster, so you can cancel it if you already installed on another node. |
|
| [11] | Click [Install] button. |
|
| [12] | After finishing Installation, click [Close] button and restart the computer. |
|
| Sponsored Link |
|
|