Create an FCI with Azure shared disks (SQL Server on Azure VMs)

Applies to: SQL Server on Azure VM

Tip

There are many methods to deploy an availability group. Simplify your deployment and eliminate the need for an Azure Load Balancer or distributed network name (DNN) for your Always On availability group by creating your SQL Server virtual machines (VMs) in multiple subnets within the same Azure virtual network. If you've already created your availability group in a single subnet, you can migrate it to a multi-subnet environment.

This article explains how to create a failover cluster instance (FCI) by using Azure shared disks with SQL Server on Azure Virtual Machines (VMs).

To learn more, see an overview of FCI with SQL Server on Azure VMs and cluster best practices.

Note

It's now possible to lift and shift your failover cluster instance solution to SQL Server on Azure VMs using Azure Migrate. See Migrate failover cluster instance to learn more.

Prerequisites

Before you complete the instructions in this article, you should already have:

Add Azure shared disk

Deploy a managed Premium SSD disk with the shared disk feature enabled. Set maxShares to align with the number of cluster nodes to make the disk shareable across all FCI nodes.

Attach shared disk to VMs

Once you've deployed a shared disk with maxShares > 1, you can mount the disk to the VMs that will participate as nodes in the cluster.

To attach the shared disk to your SQL Server VMs, follow these steps:

  1. Select the VM in the Azure portal that you will attach the shared disk to.
  2. Select Disks in the Settings pane.
  3. Select Attach existing disks to attach the shared disk to the VM.
  4. Choose the shared disk from the Disk name drop-down.
  5. Select Save.
  6. Repeat these steps for every cluster node SQL Server VM.

After a few moments, the shared data disk is attached to the VM and appears in the list of Data disks for that VM.

Initialize shared disk

Once the shared disk is attached on all the VMs, you can initialize the disks of the VMs that will participate as nodes in the cluster. Initialize the disks on all of the VMs.

To initialize the disks for your SQL Server VM, follow these steps:

  1. Connect to one of the VMs.
  2. From inside the VM, open the Start menu and type diskmgmt.msc in the search box to open the Disk Management console.
  3. Disk Management recognizes that you have a new, uninitialized disk and the Initialize Disk window appears.
  4. Verify the new disk is selected and then select OK to initialize it.
  5. The new disk appears as unallocated. Right-click anywhere on the disk and select New simple volume. The New Simple Volume Wizard window opens.
  6. Proceed through the wizard, keeping all of the defaults, and when you're done select Finish.
  7. Close Disk Management.
  8. A pop-up window appears notifying you that you need to format the new disk before you can use it. Select Format disk.
  9. In the Format new disk window, check the settings, and then select Start.
  10. A warning appears notifying you that formatting the disks erases all of the data. Select OK.
  11. When the formatting is complete, select OK.
  12. Repeat these steps on each SQL Server VM that will participate in the FCI.

Create Windows Failover Cluster

The steps to create your Windows Server Failover cluster vary depending on if you deployed your SQL Server VMs to a single subnet, or multiple subnets. To create your cluster, follow the steps in the tutorial for either a multi-subnet scenario or a single subnet scenario. Though these tutorials are for creating an availability group, the steps to create the cluster are the same.

Configure quorum

Since the disk witness is the most resilient quorum option, and the FCI solution uses Azure shared disks, it's recommended to configure a disk witness as the quorum solution.

If you have an even number of votes in the cluster, configure the quorum solution that best suits your business needs. For more information, see Quorum with SQL Server VMs.

Validate cluster

Validate the cluster on one of the virtual machines by using the Failover Cluster Manager UI or PowerShell.

To validate the cluster using the UI, follow these steps:

  1. Under Server Manager, select Tools, and then select Failover Cluster Manager.
  2. Under Failover Cluster Manager, select Action, and then select Validate Configuration.
  3. Select Next.
  4. Under Select Servers or a Cluster, enter the names of both virtual machines.
  5. Under Testing options, select Run only tests I select.
  6. Select Next.
  7. Under Test Selection, select all tests except Storage.
  8. Select Next.
  9. Under Confirmation, select Next. The Validate a Configuration wizard runs the validation tests.

To validate the cluster by using PowerShell, run the following script from an administrator PowerShell session on one of the virtual machines:

Test-Cluster –Node ("<node1>","<node2>") –Include "Inventory", "Network", "System Configuration"

Test cluster failover

Test the failover of your cluster. In Failover Cluster Manager, right-click your cluster, select More Actions > Move Core Cluster Resource > Select node, and then select the other node of the cluster. Move the core cluster resource to every node of the cluster, and then move it back to the primary node. Ensure you can successfully move the cluster to each node before installing SQL Server.

Test cluster failover by moving the core resource to the other nodes

Add shared disks to cluster

Use the Failover Cluster Manager to add the attached Azure shared disks to the cluster.

To add disks to your cluster, follow these steps:

  1. In the Server Manager dashboard, select Tools, and then select Failover Cluster Manager.

  2. Select the cluster and expand it in the navigation pane.

  3. Select Storage and then select Disks.

  4. Right-click Disks and select Add Disk:

    Add Disk

  5. Choose the Azure shared disk in the Add Disks to a Cluster window. Select OK.

    Select Disk

  6. After the shared disk is added to the cluster, you will see it in the Failover Cluster Manager.

    Cluster Disk

Create SQL Server FCI

After you've configured the failover cluster and all cluster components, including storage, you can create the SQL Server FCI.

  1. Connect to the first virtual machine by using Remote Desktop Protocol (RDP).

  2. In Failover Cluster Manager, make sure that all core cluster resources are on the first virtual machine. If necessary, move the disks to that virtual machine.

  3. If the version of the operating system is Windows Server 2019 and the Windows Cluster was created using the default Distributed Network Name (DNN), then the FCI installation for SQL Server 2017 and below will fail with the error The given key was not present in the dictionary.

    During installation, SQL Server setup queries for the existing Virtual Network Name (VNN) and doesn't recognize the Windows Cluster DNN. The issue has been fixed in SQL Server 2019 setup. For SQL Server 2017 and below, follow these steps to avoid the installation error:

    • In Failover Cluster Manager, connect to the cluster, right-click Roles and select Create Empty Role.
    • Right-click the newly created empty role, select Add Resource and select Client Access Point.
    • Enter any name and complete the wizard to create the Client Access Point.
    • After the SQL Server FCI installation completes, the role containing the temporary Client Access Point can be deleted.
  4. Locate the installation media. If the virtual machine uses one of the Azure Marketplace images, the media is located at C:\SQLServer_<version number>_Full.

  5. Select Setup.

  6. In SQL Server Installation Center, select Installation.

  7. Select New SQL Server failover cluster installation. Follow the instructions in the wizard to install the SQL Server FCI.

  8. On the Cluster Disk Selection page, select all the shared disks that were attached to the VM.

    Cluster Disk Selection

  9. On the Cluster Network Configuration page, the IP you provide varies depending on if your SQL Server VMs were deployed to a single subnet, or multiple subnets.

    1. For a single subnet environment, provide the IP address that you plan to add to the Azure Load Balancer
    2. For a multi-subnet environment, provide the secondary IP address in the subnet of the first SQL Server VM that you previously designated as the IP address of the failover cluster instance network name:

    provide the secondary IP address in the subnet of the first SQL Server VM that you previously designated as the IP address of the failover cluster instance network name

  10. On the Database Engine Configuration page, ensure the database directories are on the Azure shared disk(s).

  11. After you complete the instructions in the wizard, setup installs the SQL Server FCI on the first node.

  12. After FCI installation succeeds on the first node, connect to the second node by using RDP.

  13. Open the SQL Server Installation Center, and then select Installation.

  14. Select Add node to a SQL Server failover cluster. Follow the instructions in the wizard to install SQL Server and add the node to the FCI.

  15. For a multi-subnet scenario, in Cluster Network Configuration, enter the secondary IP address in the subnet of the second SQL Server VM subnet that you previously designated as the IP address of the failover cluster instance network name

    enter the secondary IP address in the subnet of the second SQL Server VM subnet that you previously designated as the IP address of the failover cluster instance network name

    After selecting Next in Cluster Network Configuration, setup shows a dialog box indicating that SQL Server Setup detected multiple subnets as in the example image. Select Yes to confirm.

    Multi Subnet Confirmation

  16. After you complete the instructions in the wizard, setup adds the second SQL Server FCI node.

  17. Repeat these steps on any other SQL Server VMs you want to participate in the SQL Server failover cluster instance.

Note

Azure Marketplace gallery images come with SQL Server Management Studio installed. If you didn't use a marketplace image Download SQL Server Management Studio (SSMS).

Register with SQL IaaS Agent extension

To manage your SQL Server VM from the portal, register it with the SQL IaaS Agent extension. Note that only limited functionality will be available on SQL VMs that have failover clustered instances of SQL Server (FCIs).

If your SQL Server VM has already been registered with the SQL IaaS Agent extension and you've enabled any features that require the agent, you'll need to unregister the SQL Server VM from the extension and register it again after your FCI is installed.

Register a SQL Server VM with PowerShell (-LicenseType can be PAYG or AHUB):

# Get the existing compute VM
$vm = Get-AzVM -Name <vm_name> -ResourceGroupName <resource_group_name>

# Register SQL VM with SQL IaaS Agent extension
New-AzSqlVM -Name $vm.Name -ResourceGroupName $vm.ResourceGroupName -Location $vm.Location `
   -LicenseType <license_type>

Configure connectivity

If you deployed your SQL Server VMs in multiple subnets, skip this step. If you deployed your SQL Server VMs to a single subnet, then you'll need to configure an additional component to route traffic to your FCI. You can configure a virtual network name (VNN) with an Azure Load Balancer, or a distributed network name for a failover cluster instance. Review the differences between the two and then deploy either a distributed network name or a virtual network name and Azure Load Balancer for your failover cluster instance.

Limitations

  • Azure virtual machines support Microsoft Distributed Transaction Coordinator (MSDTC) on Windows Server 2019 with storage on CSVs and a standard load balancer. MSDTC is not supported on Windows Server 2016 and earlier.
  • SQL Server FCIs registered with the extension do not support features that require the agent, such as automated backup, patching, and advanced portal management. See the table of benefits.

Next steps

If Azure shared disks are not the appropriate FCI storage solution for you, consider creating your FCI using premium file shares or Storage Spaces Direct instead.

To learn more, see: