简体   繁体   中英

Error While uploading to windows Azure using powershell Script

I am uploading the application to windows Azure using the powershell Script

    New-AzureDeployment -ServiceName $servicename -Label MySite 
          -Slot "Staging" -Package "C:\Users\ronak\Documents\Visual Studio 2012\Projects\samplewebrole\samplewebrole\bin\Release\app.publish\samplewebrole.cspkg" 
          -Configuration "C:\Users\ronak\Documents\Visual Studio 2012\Projects\samplewebrole\samplewebrole\bin\Release\app.publish\ServiceConfiguration.Cloud.cscfg"

When I run this I receive an error as follows

New-AzureDeployment : Unable to write data to the transport connection: An
    existing connection was forcibly closed by the remote host.
    At line:14 char:1
    + New-AzureDeployment -ServiceName $servicename -Label MySite -Slot "Staging" -Pac...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : CloseError: (:) [New-AzureDeployment], StorageException
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Management.ServiceManagement.HostedServices.NewAzureDeploymentCommand

To resolve this i found some suggestion to increase the size the asp.net can upload. Is there any other reason this is happening?

Also I am able to create cloud service and storage but cant upload my package to it.

我将脚本移到了托管在azure上的虚拟机上,并且不再出现此错误,因此我认为此错误是由于防火墙或Internet连接速度慢所致。脚本在虚拟机上按需要运行,能够自动化我的部署过程。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM