我在 Azure 上部署了一个应用程序网关,但后端运行状况一直说“未知”为状态。
如果我通过请求
Get-AzureRmApplicationGatewayBackendHealth -Name $appGwName -ResourceGroupName $myRg
我收到
"BackendHttpSettings": {
"ProbeEnabled": false,
"Id": "/subscriptions/XXX"
},
"Servers": [
{
"Address": "X.X.X.X",
"Health": "Unknown"
}
]
但是我没有找到激活探针的方法。我通过 Portal 和 powershell 创建了探针,在这两种情况下我都遇到了同样的问题。
$helthProbe01 = New-AzureRmApplicationGatewayProbeConfig -Name "httpsProbe" -Protocol Https -HostName "127.0.0.1" -Path "/page/index.aspx" -Interval 30 -Timeout 60 -UnhealthyThreshold 3
如何激活运行状况探测?
谢谢丹尼尔