[Guide] How to Configure Cluster Windows Server 2019

This guide caters to all, concluding with key takeaways that underscore the importance of embracing clustering technology in Windows Server 2019. Don't miss the chance to enhance your server infrastructure.

By @ZeliaLast Updated December 27, 2023

Understand cluster Windows Server 2019

Windows Server 2019 introduces advanced clustering capabilities that play a pivotal role in creating resilient and high-performing server environments. Clustering involves the grouping of multiple servers to work together seamlessly, ensuring high availability and fault tolerance. This technology enables businesses to achieve a level of reliability that minimizes downtime and optimizes performance, making it a cornerstone of modern server management.

Types of Clustering

Two primary types of clustering take center stage in Windows Server 2019:

  • Failover Clustering: This type of clustering is geared towards achieving high availability. By distributing workloads across multiple servers, it ensures that in the event of a server failure, services and applications seamlessly transition to another node, minimizing downtime and enhancing reliability.
  • Load Balancing Clustering: Focused on optimizing resource utilization, load balancing clustering distributes network or application traffic across multiple servers. This not only improves performance but also ensures that no single server bears an undue burden, leading to enhanced scalability and responsiveness.

Prerequisites for cluster setup

Windows Server 2019 failover cluster requirement: Two servers running Windows Server 2019, equipped with the most recent updates, feature a minimum of two network interfaces: one designated for production traffic and the other for cluster traffic.

1. Ensure both servers are updated and joined to the Microsoft Active Directory domain, with shared storage visible in disk management. Add the Failover Clustering feature through Server Manager's Add Roles and Features Wizard.

2. Reboot if necessary, or use the following PowerShell command:

Install-WindowsFeature -Name Failover-Clustering –IncludeManagementTools

3. Post-installation: Access Failover Cluster Manager in Windows Administrative Tools via the start menu.

4. Bring the shared disk online and format it on one server; keep it offline on the second. After refreshing disk management, observe the configuration.

5. Launch Failover Cluster Manager, navigate to the management section, and Validate Configuration. Select both servers for validation.

6. Run all tests, noting Microsoft-supported solutions provided in the description.

7. After confirming successful test results, create the cluster by selecting Create the cluster now using the validated nodes or delay the process. For errors or warnings, consult the detailed report accessible through View Report.

Step-by-Step guide to create the failover cluster windows server 2019

Below is a simplified guide about how to configure failover cluster in Windows Server 2019:

1. Opting to create the cluster through the Failover Cluster Manager's Create Cluster option initiates a prompt to select cluster nodes. Alternatively, choosing the Create the cluster now using the validated nodes checkbox in the cluster validation wizard bypasses this step.

2. Proceed to the creation of the Access Point for Administering the Cluster as the next step. The wizard will prompt for Cluster Name and IP address configuration; confirm the details and await cluster creation.

3. The shared disk is automatically added to the cluster by default during the wizard process. Configuration can also be done post-creation if not previously set.

4. An alternative method involves using PowerShell to create the cluster. The command automatically adds all eligible storage:

New-Cluster -Name WFC2019 -Node SRV2019-WFC1, SRV2019-WFC2 -StaticAddress 172.21.237.32

5. Verify the results in the Failover Cluster Manager under the Nodes and Storage >> Disks sections.

6. The image indicates the disk's current use as a quorum. To repurpose it for data, manual quorum configuration is necessary. Access the cluster context menu, choose More Actions >> Configure Cluster Quorum Settings.

7. Manually select the quorum witness in the subsequent step.

8. Select Configure a disk witness to Adds a quorum vote for the disk witness.

9. Specify the path and complete the wizard.

10. Following these steps, the shared disk is now available for data use, marking the successful setup of a Microsoft failover cluster with one shared disk.

Conclusion

In conclusion, leveraging clustering technology in Windows Server 2019 is a strategic move toward building a resilient and high-performing server infrastructure. The failover clustering capabilities, combined with meticulous prerequisites and a systematic setup, empower administrators to optimize reliability and performance. As businesses navigate the complexities of modern IT landscapes, embracing clustering in Windows Server 2019 emerges as a key strategy for meeting the demands of a dynamic and ever-evolving technological landscape.