aspnetcore: Unable to Deploy to Azure RC-1
We are currently working on a web application and up until RC-1 we were able to deploy it successfully to Azure. The project now has been updated to RC-1. Runs successfully locally when we debug it on IIS Express… but when we deploy to Azure all we get is a very long pause and then eventually a 502 error from the browser…
If we look at the event log about the only thing we see is the following entry for the below…
Is there a way in which we can get what EXACTLY is going on?
<Event>
<System>
<ProviderName="HttpPlatformHandler"/><EventID>1000</EventID><Level>0</Level><Task>0</Task><Keywords>Keywords</Keywords><TimeCreated SystemTime="2015-12-02T23:07:48Z"/>
<EventRecordID>812457593</EventRecordID><Channel>Application</Channel>
<Computer>RD00155D857487</Computer><Security/></System><EventData>
<Data>Process '7016' failed to start. Port = 29376, Error Code = '-2147023829'.</Data></EventData>
</Event>
About this issue
- Original URL
- State: closed
- Created 9 years ago
- Reactions: 2
- Comments: 41 (28 by maintainers)
Commits related to this issue
- Add ERROR_SHARING_VIOLATION to retry list for IISDeployer.Start (#1147) — committed to dotnet/aspnetcore by pakrym 6 years ago
- Remove TCP Loopback Fast Path code (#1147). — committed to dotnet/aspnetcore by deleted user 8 years ago
@Zoltu Do you have a
global.jsonin the root with the rest of your app’s files and folders published output? If so, then you need to addglobal.jsonto thepublishExcludesection ofproject.json.Otherwise if that’s not a problem, there are many reasons why an app would be unresponsive on Azure. My old post on RC1 conversions is still somewhat relevant, so you can run down that list to see if anything rings a bell.