The Azure Quickstart templates are currently available in English
Create a SQL Server AlwaysOn Cluster Deployment
Laatst bijgewerkt: 11-9-2018
This template creates 5 new Azure VMs, each group load balancer and a VNet. It configures a primary and backup AD Domain Controller for a new Forest and Domain, two SQL Servers and witness in AlwaysOn configuration
Deze ARM-sjabloon (Azure Resource Manager) is gemaakt door een lid van de community, niet door Microsoft. Elke ARM-sjabloon wordt aan u in licentie gegeven onder een licentieovereenkomst van de eigenaar, niet van Microsoft. Microsoft is niet verantwoordelijk voor ARM-sjablonen die door communityleden worden verstrekt en in licentie worden gegeven, en test deze sjablonen ook niet op veiligheid, compatibiliteit of prestaties. ARM-sjablonen van de community worden onder geen enkel programma of geen enkele service van Microsoft ondersteund, en worden 'AS IS' beschikbaar gesteld, zonder enige vorm van garantie.
Parameters
Parameternaam | Beschrijving |
---|---|
adminUsername | The name of the Administrator of the new VMs and Domain |
adminPassword | The password for the Administrator account of the new VMs and Domain |
adVMSize | The size of the AD VMs Created |
sqlVMSize | The size of the SQL VMs Created |
witnessVMSize | The size of the Witness VM Created |
domainName | The FQDN of the AD Domain created |
sqlServerServiceAccountUserName | The SQL Server Service Account name |
sqlServerServiceAccountPassword | The SQL Server Service Account password |
sqlStorageAccountName | The name of Sql Server Storage Account |
sqlStorageAccountType | The type of the Sql Server Storage Account created |
dcStorageAccountName | The name of DC Storage Account |
dcStorageAccountType | The type of the DC Storage Account created |
virtualNetworkAddressRange | The address range of the new VNET in CIDR format |
staticSubnet | The address range of the subnet static IPs are allocated from in the new VNET |
sqlSubnet | The address range of the SQL subnet created in the new VNET |
adPDCNICIPAddress | The IP address of the new AD VM |
adBDCNICIPAddress | The IP address of the new backup AD VM |
sqlLBIPAddress | The IP address of the new SQL Server Internal Load Balancer |
deploymentPrefix | The DNS Prefix for the Public IP Address for the Always On Cluster |
virtualNetworkName | Name of virtual network to be created |
templatesBaseUrl | Linked Templates base url |
scriptsBaseUrl | DSC Scripts base url |
autoPatchingDay | The day of a week for auto patching |
autoPatchingStartHour | The start hour of a day for auto patching |
sqlAOAGName | The Sql AlwaysOn Group Name |
sqlAOListenerPort | The Sql AG Listener port |
sqlAOListenerName | The Sql AG Listener Name |
sqlServerVersion | The Sql Server Version |
numberOfSqlVMDisks | The Sql VM Disk Size |
workloadType | The Sql VM work load type: GENERAL - general work load; DW - datawear house work load; OLTP - Transactional processing work load |
location | Location for all resources. |
De sjabloon gebruiken
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 deploymentAzure PowerShell installeren en configureren
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/sqlvm-alwayson-cluster/azuredeploy.json
Opdrachtregel
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 deploymentDe platformoverschrijdende Azure-opdrachregelinterface installeren en configureren
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/sqlvm-alwayson-cluster/azuredeploy.json