8

enter image description here

I get this result after i ran the API. May i ask, how to fix this issue?

Marc Kenneth Lomio
  • 429
  • 1
  • 4
  • 11
  • 1
    How long does it take for timeout to occur? Found similar issue : https://github.com/dotnet/aspnetcore/issues/20194 – jdweng Jun 15 '20 at 11:17
  • 2
    This https://stackoverflow.com/questions/59369322/net-core-3-0-and-iis-http-error-500-30-ancm-in-process-start-failure-failed helped me – Raghavan MK Dec 14 '20 at 06:05

3 Answers3

3
  1. close applications running on the system
  2. turns out because access takes a long time
  3. Webconfig upgrade startupTimeLimit https://learn.microsoft.com/en-us/previous-versions/iis/6.0-sdk/ms524792(v=vs.90)
1

I have been able to resolve this by:

  1. Closing Visual Studio
  2. Restarting my App Pool in IIS
  3. Restarting Visual Studio
  4. Rebuilding my app

(Just restarting IIS without the VS reset did not help).

Yaakov Ellis
  • 40,752
  • 27
  • 129
  • 174
0

This error happened to me when running my site on my local machine. Restarting my PC resolved the issue. ASP.NET Core 3.1

Roman Pokrovskij
  • 9,449
  • 21
  • 87
  • 142
user3276657
  • 43
  • 1
  • 8