无法在 azure 虚拟机上访问第二个网站
Can not access second website on azure virtual machine
我在 Azure 虚拟机(经典)的 IIS 服务器上托管两个 Web 应用程序,但我无法通过 url 访问第二个应用程序。
我有两个网站 - 一个托管在端口 80 上,另一个托管在端口 8081 上。
我可以使用 - http://abc.cloudapp.net, but can not access the second site as http://abc.cloudapp.ne:8081 访问网站。我已经为 VM 添加了两个端点。
在本地,我可以使用 url- http:://localhost 和 http://localhost:8081.
访问这两个站点
谁能帮帮我?
您还必须在本地 VM 防火墙上打开端口 8081。在 PowerShell 的服务器上。
PS C:\> New-NetFirewallRule -DisplayName "Open Inbound Port 8081" -Direction Inbound –LocalPort 8081 -Protocol TCP -Action Allow
参考:https://technet.microsoft.com/en-us/library/jj554908(v=wps.630).aspx
我在 Azure 虚拟机(经典)的 IIS 服务器上托管两个 Web 应用程序,但我无法通过 url 访问第二个应用程序。
我有两个网站 - 一个托管在端口 80 上,另一个托管在端口 8081 上。 我可以使用 - http://abc.cloudapp.net, but can not access the second site as http://abc.cloudapp.ne:8081 访问网站。我已经为 VM 添加了两个端点。
在本地,我可以使用 url- http:://localhost 和 http://localhost:8081.
访问这两个站点谁能帮帮我?
您还必须在本地 VM 防火墙上打开端口 8081。在 PowerShell 的服务器上。
PS C:\> New-NetFirewallRule -DisplayName "Open Inbound Port 8081" -Direction Inbound –LocalPort 8081 -Protocol TCP -Action Allow
参考:https://technet.microsoft.com/en-us/library/jj554908(v=wps.630).aspx