我使用来自http://www.windowsazure.com/en-us/develop/net/common-tasks/continuous-delivery/的 powershell 脚本“PublishCloudService.ps1”来部署我的云项目。不知何故,一个项目没有部署,我收到以下错误消息:
Set-AzureDeployment : Unable to write data to the transport connection: An existing connection was forcibly closed by the remote host.
At D:\Users\4711\Untitled1.ps1:78 char:22
+ $setdeployment = Set-AzureDeployment -Upgrade -Slot $slot -Package $packageL ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Set-AzureDeployment], StorageException
+ FullyQualifiedErrorId : Microsoft.WindowsAzure.Management.ServiceManagement.HostedServices.SetAzureDeploymentCommand
受影响的命令是:
Set-AzureDeployment -Upgrade -Slot $slot -Package $packageLocation -Configuration $cloudConfigLocation -label $deploymentLabel -ServiceName $serviceName -Force
使用 Visual Studio 中的发布对话框部署项目手册没有任何问题。
我已经尝试在 Visual Studio 中重新创建项目并创建了一个新的存储帐户,但仍然面临同样的错误。该脚本适用于我的其他云项目。
如何获得有关错误的更多信息?有什么建议么?