ayman omara
ayman omara

Reputation: 344

getting 500.30 error after restart app service in azure

after I restarted my app service I getting 500.30 error and I am new to AZURE services any tutorials or articles that helps I really would appreciate that

Upvotes: 0

Views: 1232

Answers (1)

VenkateshDodda
VenkateshDodda

Reputation: 5506

Based on our investigations , we have understood that Http status code 500.30 occurs in .Net core web applications.

  • Http 500.30 status code occurs when The worker process fails. The app doesn't start.
  • The ASP.NET Core Module attempts to start the .NET Core CLR in-process, but it fails to start. The cause of a process startup failure can usually be determined from entries in the Application Event Log and the ASP.NET Core Module stdout log.

To know more information about the error Go to Azure Portal > your App Service > under development tools open console. We can run the application through this console and thus visualize the real error that is causing our application not to load. For that put, the name of our project followed by “.exe” and press the enter key.

enter image description here

please refer these documents for more information about 500.30 In-Process Startup Failure & for Troubleshooting on Azure App Service.

Upvotes: 4

Related Questions