I have an ASP.NET Core 1.0 application which has been successfully deployed and running on our pre-prod server for months. Today I tried deploying the website to our production server using this article as a guideline: https://docs.asp.net/en/latest/publishing/iis.html
Bottom line is we can't get past this error:
HTTP Error 502.5 - Process Failure
Common causes of this issue:
* The application process failed to start
* The application process started but then stopped
* The application process started but failed to listen on the configured port
We tried the ideas listed in this article, but still no luck: ASP.NET Core 1.0 on IIS error 502.5
How do you go about debugging a 502.5 error, to get to the actual cause of the failure?
The app's log files are getting created, but unfortunately they are empty. The web server's Event Viewer contains this entry:
Process was created with commandline 'D:\Applications\PVP\UserInterface.exe' but failed to get the status, errorCode = 0x80070005
Any help would be very much appreciated! Tory.