Azure hurtig start-skabelonerne er i øjeblikket tilgængelige på engelsk
This template creates a RDS farm deployment using existing active directory in same resource group
Denne ARM-skabelon (Azure Resource Manager) blev oprettet af et medlem af communityet og ikke af Microsoft. Hver ARM-skabelon er givet i licens til dig under en licensaftale med ejeren af skabelonen og ikke med Microsoft. Microsoft kan ikke gøres ansvarlig for de ARM-skabeloner, der leveres og gives i licens af communitymedlemmer, og vi undersøger dem ikke for sikkerhed, kompatibilitet eller ydeevne. ARM-skabeloner fra communytiet understøttes ikke af noget eller nogen Microsoft-supportprogram eller -tjeneste, og de stilles til rådighed, SOM DE ER, uden nogen former for garanti.
Parametre
Parameternavn | Beskrivelse |
---|---|
dnsLabelPrefix | Unique public DNS prefix for the deployment. The fqdn will look something like '<dnsname>.westus.cloudapp.azure.com'. Up to 62 chars, digits or dashes, lowercase, should start with a letter: must conform to '^[a-z][a-z0-9-]{1,61}[a-z0-9]$'. For example johndns1 will result the final RDWEB access url like https://johndns1.westus.cloudapp.azure.com/RDWeb |
adDomainName | The name of the AD domain. For example contoso.com |
adVnetName | The vnet name of AD domain. For example johnvnet1 |
adVnetRG | The Resource Group containing the existing Virtual Network resource |
adVnetSubscriptionId | The subscription containing the existing Virtual Network resource |
adSubnetName | The subnet name of AD domain |
dnsServerPrivateIp | The private IP address of the ad dns server |
adminUsername | The name of the administrator of the new VM and the domain. Exclusion list: 'administrator'. For example johnadmin |
adminPassword | The password for the administrator account of the new VM and the domain |
imageSKU | Windows server SKU |
numberOfRdshInstances | Number of RemoteDesktopSessionHosts |
rdshVmSize | The size of the RDSH VMs |
location | Location for all resources. |
_artifactsLocation | The base URI where artifacts required by this template are located. When the template is deployed using the accompanying scripts, a private location in the subscription will be used and this value will be automatically generated. |
_artifactsLocationSasToken | The sasToken required to access _artifactsLocation. When the template is deployed using the accompanying scripts, a sasToken will be automatically generated. |
gatewayIpDNS | DNS name for the gateway, must be globally unique. |
connBrokerIpDNS | DNS name for the connection broker, must be globally unique. |
rdshNamingPrefix | Naming prefix for the RDS Host VMs and resources |
Brug skabelonen
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 deploymentInstallér og konfigurer Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/rds/rds-deployment-existing-ad/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 deploymentInstallér og konfigurer Azure-kommandolinjegrænsefladen til flere platforme
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/rds/rds-deployment-existing-ad/azuredeploy.json