[azure-cli] create Web App(Server)

Seokhee Hwang
wrapskirt
Published in
1 min readFeb 15, 2019

Web App 생성 명령어

az webapp create -g node-test-linux -p node-test-linux -n node-test-server --runtime "NODE|8.9"
  • -g or --resource-group : resource-group (리소스 그룹명)
  • -p or --plan : app service plan (Plan명)
  • -n or --name : name (Web App명)
  • -r or --runtime : web runtime

Web App이 생성되면 생성한 이름의 URL로 접근이 가능하다.

runtime 목록 확인 명령어

az webapp list-runtimesex
[
"aspnet|v4.7",
"node|10.6",
"php|7.2",
"python|3.6",
"java|1.8|Tomcat|9.0",
"java|1.8|Jetty|9.3"
]

--

--