0

如何HTTP probeAzure Load Balancer?

问题是当我重定向到我们HTTPS的负载均衡器时正在杀死 HTTP 站点。

这是 Get-AzureEndpoint powershell 命令的输出 -

LBSetName     : HTTP-80
LocalPort     : 80
Name          : HTTP
Port          : 80
Protocol      : tcp
Vip           : 137.135.130.248
ProbePath     : /
ProbePort     : 80
ProbeProtocol : http

有什么建议么?

4

1 回答 1

0

为了任何从搜索引擎到达这里的人的利益,迟到的答案。请参阅 Craig Landis 在这篇文章中的详细回答:http:
//social.msdn.microsoft.com/Forums/silverlight/en-US/04589d2d-4acb-4f86-a2d0-957dc2a73a4f/endpoints-not-working-dns-scans -the
该帖子中用于创建无需 HTTP 探测的端点的 powershell 脚本是:
get-azurevm myvm | add-azureendpoint -name web -protocol TCP -publicport 80 -localport 80 | update-azurevm

于 2013-07-08T08:56:09.823 回答