如何在azure中重新启动应用程序网关

时间:2018-04-12 05:54:37

标签: azure azure-web-sites

我的安装的当前结构

Current structure of my installation

我必须在azure中重新启动应用程序网关

3 个答案:

答案 0 :(得分:2)

Get-AzureRmApplicationGateway | Stop-AzureRmApplicationGateway | Start-AzureRmApplicationGateway

或者你可以跳过get并只指定启动\停止的内容。以上将重新启动子网中的所有网关。所以,如果这不是你的目标,那么你应该更加具体。

PS。为什么重启呢?

答案 1 :(得分:1)

或使用AZ CLI(这解决了一个反弹的后端池问题)

az network application-gateway stop --id /subscriptions/<sub-id>/resourceGroups/<resource-group>/providers/Microsoft.Network/applicationGateways/<waf-name>

az network application-gateway start --id /subscriptions/<sub-id>/resourceGroups/<resource-group>/providers/Microsoft.Network/applicationGateways/<waf-name>

答案 2 :(得分:1)

打开安装了Az模块的Azure Cloud Shell或本地PowerShell,并使用以下命令:

# Get Azure Application Gateway
$appgw=Get-AzApplicationGateway -Name <appgw_name> -ResourceGroupName <rg_name>

# Stop the Azure Application Gateway
Stop-AzApplicationGateway -ApplicationGateway $appgw

# Start the Azure Application Gateway (optional)
Start-AzApplicationGateway -ApplicationGateway $appgw