我使用VS2015 CE创建了一个新的ASP.NET5网站,但我无法将其部署到IIS7.5服务器。
我可以将旧项目部署到此服务器。
当我使用“发布Web”向导时,“连接”选项卡已正确配置(“验证连接”显示成功)。按"开始预览"在“预览”选项卡上显示要发送到服务器的正确文件列表。
这表明VS可以在服务器上与WebDeploy成功通信。
当我按发布时,我得到:
Error Code: ERROR_DESTINATION_NOT_REACHABLE
More Information: Could not connect to the remote computer (blah blah blah)
/?LinkId=221672#ERROR_DESTINATION_NOT_REACHABLE
Error: Unable to connect to the remote server
我已阅读https://docs.asp.net/en/latest/publishing/iis-with-msdeploy.html并按照所有说明操作。
答案 0 :(得分:0)
使用带有-verbose
标志的MSDeploy.exe手动部署程序包,以尝试获取有关错误的更多详细信息。
>"C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\msdeploy.exe" -verb:sync -source:package=WebApplication7.zip -dest:manifest=WebApplication7.DestManifest.xml
以下帖子底部有一个部分,其中包含有关手动部署程序包的完整说明。