The Azure Quickstart templates are currently available in English
Create SQL AvailabilityGroup listener on existing Always ON setup.
Deploy SQL AvailabilityGroup listener on existing Always ON setup. This creates Listener on an existing SQL Availability Group, sets up corresponding load balancer rules and probe ports on Azure Load balancer to get the listener connections working.
Denne Azure Resource Manager (ARM)-malen ble opprettet av et medlem av fellesskapet og ikke av Microsoft. Hver ARM-mal er lisensiert til deg i henhold til en lisensavtale med eieren, ikke med Microsoft. Microsoft er ikke ansvarlig for ARM-maler som leveres og lisensieres av medlemmer og siler dem ikke ut med tanke på sikkerhet, kompatibilitet eller ytelse. Fellesskapets ARM-maler støttes ikke av noe Microsoft-støtteprogram eller -tjeneste, og er gjort tilgjengelig SOM DE ER, uten noen form for garanti.
Parametere
Parameternavn | Beskrivelse |
---|---|
existingFailoverClusterName | Specify the name of the failover cluster |
existingSqlAvailabilityGroup | Specify the name of SQL Availability Group for which listener is being created |
existingVmList | Specify the Virtual machine list participating in SQL Availability Group e.g. VM1, VM2. Maximum number is 6. |
Listener | Specify a name for the listener for SQL Availability Group |
ListenerPort | Specify the port for listener |
ListenerIp | Specify the available private IP address for the listener from the subnet the existing Vms are part of. |
existingVnetResourcegroup | Specify the resourcegroup for virtual network |
existingVnet | Specify the virtual network for Listener IP Address |
existingSubnet | Specify the subnet under Vnet for Listener IP address |
existingInternalLoadBalancer | Name of existing internal load balancer for the AG listener. Choose Standard Sku if the VMs are not in an availability set. |
ProbePort | Specify the load balancer port number (e.g. 59999) |
Location | Location for all resources. |
Bruke malen
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstallere og konfigurere Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-sql-vm-aglistener-setup/azuredeploy.json
Kommandolinje
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstaller og konfigurer Azures kommandolinjegrensesnitt for alle plattformer
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-sql-vm-aglistener-setup/azuredeploy.json