Skip to content

Latest commit

 

History

History
69 lines (49 loc) · 11.4 KB

virtual-machines-common-app-frameworks.md

File metadata and controls

69 lines (49 loc) · 11.4 KB

Applications

From this table you can find more information about the parameters that are used in the template, you can inspect the template before you deploy it, or you can deploy the template directly from the Azure portal.

Application Learn more View the template Deploy it now
Active Directory Gallery GitHub
Apache Gallery GitHub
Couchbase Gallery GitHub
DataStax Gallery GitHub
Django Gallery GitHub
Docker Gallery GitHub
Elasticsearch Gallery GitHub
Jenkins Gallery GitHub
Kafka Gallery GitHub
LAMP Gallery GitHub
MongoDB Gallery GitHub
Redis Gallery GitHub
SharePoint Gallery GitHub
Spark Gallery GitHub
Tomcat Gallery GitHub
WordPress Gallery GitHub
ZooKeeper Gallery GitHub

In addition to these templates, you can search through the gallery templates.

Azure portal

Deploying a template by using the Azure portal is easy to do by just sending a URL to it. You need the name of the template file to deploy it. You can find the name by looking at the pages in the template gallery or by looking in the GitHub repository. Change {template name} in this URL to the name of the template that you want to deploy and then enter it into your browser:

https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2F{template name}%2Fazuredeploy.json

You should see the custom deployment blade:

  1. For the Template pane, click Save.
  2. Click Parameters. On the Parameters pane, enter new values, select from allowed values, or accept default values, and then click OK.
  3. If needed, click Subscription and select the correct Azure subscription.
  4. Click Resource group and select an existing resource group. Alternately, click Or create new to create a new one for this deployment.
  5. If needed, click Location and select the correct Azure location.
  6. If needed, click Legal terms to review the terms and agreement for using the template.
  7. Click Create.

Depending on the template, it can take some time for Azure to deploy the resources.

Azure PowerShell

Run these commands to create the resource group and the deployment after you replace the text in brackets with the resource group name, location, deployment name, and template name:

New-AzureRmResourceGroup -Name {resource-group-name} -Location {location}
New-AzureRmResourceGroupDeployment -Name {deployment-name} -ResourceGroupName {resource-group-name} -TemplateUri "https://raw.githubusercontent.com/azure/azure-quickstart-templates/master/{template-name}/azuredeploy.json"

When you run the New-AzureRmResourceGroupDeployment command, you are prompted to enter values for the parameters in the template. Depending on the template, it can take some time for Azure to deploy the resources.

Azure CLI

Install Azure CLI, log in, and make sure you enable Resource Manager commands. For information about how to do this, see Use the Azure CLI for Mac, Linux, and Windows with Azure Resource Manager.

Run these commands to create the resource group and the deployment after you replace the text in brackets with the resource group name, location, deployment name, and template name:

azure group create {resource-group-name} {location}
azure group deployment create --template-uri https://raw.githubusercontent.com/azure/azure-quickstart-templates/master/{template-name}/azuredeploy.json {resource-group-name} {deployment-name}

When you run the azure group deployment create command, you are prompted to enter values for the parameters in the template. Depending on the template, it can take some time for Azure to deploy the resources.

Next steps

Discover all the templates at your disposal on GitHub.

Learn more about Azure Resource Manager.