Wednesday, March 25, 2020

How to create WebApp in Azure Cloud - Create App service in Microsoft Azure

WebApp is an App service provide by Azure Cloud for hosting your application. It supports .NET, Java, PHP,  Python and NodeJS. 

Steps for Creating WebApp in Azure Portal

1. Now to login portal.azure.com
2. Click on App services


3.Click on + Add or click on Create app service



Click on Web App.

Choose your Azure subscription

Create a new resource group(for first time if you create an app service, otherwise you can use existing group name)
Enter App service name(it should be unique)
Publish as Code
Run time stack as Java 11 --> Tomcat 9.0
Operating System as Linux
Region as Central
Enter LinuxPlan name
Choose SKU and size as given below:
Choose DEV/Test and use 1 GB memory



Click on Apply
Now click on Apply & Create.
This will take bit time to create the app service. Once WebApp is created, go resources, click on Webapp name and click on the URL.




You should see the app service home page some thing like below:



Since our WebApp is up and running, now we can start creating Azure Pipelines to migrate any app to Azure cloud.

No comments:

Post a Comment

How to Create Quality Gate in SonarQube and integrate with GitHub Actions | SonarQube Integration with GitHub Actions | Automate Code Scan using SonarQube In GitHub Actions and Force build to Fail or Pass

Pre-requisites: Make sure SonarQube is up and running Make sure Java Project is setup in GitHub SonarQube is already integrated with GitHub ...