Skip to content

Commit ad3522b

Browse files
Merge pull request #87916 from MashaMSFT/20190909_sqlvmfci
added fci 2019 notes (AzB 1589558)
2 parents 6fdb535 + ebe33bd commit ad3522b

File tree

4 files changed

+31
-2
lines changed

4 files changed

+31
-2
lines changed

articles/virtual-machines/windows/sql/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- name: What is a SQL Server VM?
44
href: virtual-machines-windows-sql-server-iaas-overview.md
55
- name: Which SQL option should I choose?
6-
href: ../../../sql-database/sql-database-paas-vs-sql-server-iaas.md?toc=%2fazure%2fvirtual-machines%2fwindows%2fsql%2ftoc.json
6+
href: ../../../sql-database/sql-database-paas-vs-sql-server-iaas.md?toc=%2fazure%2fvirtual-machines%2fwindows%2fsql%2ftoc.json&bc=%2fazure%2fvirtual-machines%2fwindows%2fsql%2fbreadcrumb%2ftoc.json
77
- name: Release notes
88
href: virtual-machines-windows-sql-server-iaas-release-notes.md
99
- name: Quickstarts
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
- name: Azure
2+
tocHref: /azure/
3+
topicHref: /azure/index
4+
items:
5+
- name: Virtual Machines
6+
tocHref: /azure/virtual-machines/
7+
topicHref: /azure/virtual-machines/
8+
items:
9+
- name: Windows
10+
tocHref: /azure/virtual-machines/windows/
11+
topicHref: /azure/virtual-machines/windows/
12+
items:
13+
- name: SQL VM
14+
tocHref: /azure/sql-database
15+
topicHref: /azure/virtual-machines/windows/sql

articles/virtual-machines/windows/sql/virtual-machines-windows-portal-sql-availability-group-tutorial.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ After the prerequisites are completed, the first step is to create a Windows Ser
8080

8181
### Set the Windows server failover cluster IP address
8282

83+
> [!NOTE]
84+
> On Windows Server 2019, the cluster creates a **Distributed Server Name** instead of the **Cluster Network Name**. If you're using Windows Server 2019, skip any steps that refer to the cluster core name in this tutorial. You can create a cluster network name using [PowerShell](virtual-machines-windows-portal-sql-create-failover-cluster.md#windows-server-2019). Review the blog [Failover Cluster: Cluster Network Object](https://blogs.windows.com/windowsexperience/2018/08/14/announcing-windows-server-2019-insider-preview-build-17733/#W0YAxO8BfwBRbkzG.97) for more information.
85+
8386
1. In **Failover Cluster Manager**, scroll down to **Cluster Core Resources** and expand the cluster details. You should see both the **Name** and the **IP Address** resources in the **Failed** state. The IP address resource cannot be brought online because the cluster is assigned the same IP address as the machine itself, therefore it is a duplicate address.
8487

8588
2. Right-click the failed **IP Address** resource, and then click **Properties**.

articles/virtual-machines/windows/sql/virtual-machines-windows-portal-sql-create-failover-cluster.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,12 +264,23 @@ To create the failover cluster, you need:
264264
- A name for the failover cluster
265265
- An IP address for the failover cluster. You can use an IP address that is not used on the same Azure virtual network and subnet as the cluster nodes.
266266

267-
The following PowerShell creates a failover cluster. Update the script with the names of the nodes (the virtual machine names) and an available IP address from the Azure VNET:
267+
#### Windows Server 2008-2016
268+
269+
The following PowerShell creates a failover cluster for **Windows Server 2008-2016**. Update the script with the names of the nodes (the virtual machine names) and an available IP address from the Azure VNET:
268270

269271
```powershell
270272
New-Cluster -Name <FailoverCluster-Name> -Node ("<node1>","<node2>") –StaticAddress <n.n.n.n> -NoStorage
271273
```
272274

275+
#### Windows Server 2019
276+
277+
The following PowerShell creates a failover cluster for Windows Server 2019. For more information, review the blog [Failover Cluster: Cluster network Object](https://blogs.windows.com/windowsexperience/2018/08/14/announcing-windows-server-2019-insider-preview-build-17733/#W0YAxO8BfwBRbkzG.97). Update the script with the names of the nodes (the virtual machine names) and an available IP address from the Azure VNET:
278+
279+
```powershell
280+
New-Cluster -Name <FailoverCluster-Name> -Node ("<node1>","<node2>") –StaticAddress <n.n.n.n> -NoStorage -ManagementPointNetworkType Singleton
281+
```
282+
283+
273284
### Create a cloud witness
274285

275286
Cloud Witness is a new type of cluster quorum witness stored in an Azure Storage Blob. This removes the need of a separate VM hosting a witness share.

0 commit comments

Comments
 (0)