Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.44 KB

File metadata and controls

50 lines (33 loc) · 1.44 KB

Scale your App Service Plan manually

appservice/scale-manually/README.md

Prerequisites

This example assumes you have previously completed the following examples:

  1. Create an Azure Resource Group
  2. Create an App Service plan
  3. Deploy a web application on a managed Tomcat

Scale the App Service Plan

To scale the App Service Plan use the following command line:

  az appservice plan update \
    --verbose \
    --name $APPSERVICE_PLAN \
    --resource-group $RESOURCE_GROUP \
    --number-of-workers 2

You can adjust the number to your desired number of workers.

Cleanup

Do NOT forget to remove resources once you are done running the example.