8

I have two worker roles in one Azure package. I am getting this error:

The port '3389' is used by both endpoint Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput in role WorkerRole1 and endpoint Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput in role WorkerRole2.

But I dont find any reference to Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput in cloud service configuration(cscfg) file

4

1 回答 1

18

验证服务配置中只有一个 WorkerRoles 具有“Microsoft.WindowsAzure.Plugins.RemoteForwarder.Enabled”设置。如果他们两个都有这个设置,我相信插件会尝试为他们两个设置端点。您只需要其中一个角色即可充当远程转发器。从那里,它通过隧道远程访问将 Microsoft.WindowsAzure.Plugins.RemoteAccess.Enabled 设置为 true 的任何其他角色。

如果是这种情况,如果您尝试打包或发布,它应该会给您一个错误。

于 2013-07-25T12:12:51.343 回答