Azure WebApp Asp.NET Core 2 error: An error occurred while starting the application

43,088

Solution 1

I managed to solve the problem myself and I hope this solution might help someone.

First, I have set log folder on the Azure server and find issue with more details. I forgot some database changes in SQL.Update database changes and run it's working fine now.

Solution 2

Please add ASPNETCORE_DETAILEDERRORS = true in app settings of your app, restart it and see the detailed error next time you load the url. That will help you fix it.

For example, error in my case was that I didn't have the managed identity of my API App configured to access the Key Vault to get the storage account and Cosmos DB keys. I used startup to inject the configured storage and cosmos db objects hence it was failing the moment I was starting my app.

When you've fixed the startup issue, don't forget to remove this setting as leaving it on could expose information about how the application works to visitors in the event of another error.

Solution 3

Got my tips from https://scottsauber.com/2017/04/10/how-to-troubleshoot-an-error-occurred-while-starting-the-application-in-asp-net-core-on-iis/

  1. Open your web.config
  2. Change stdoutLogEnabled=true
  3. Create a logs folder Unfortunately, the AspNetCoreModule doesn’t create the folder for you by default If you forget to create the logs folder, an error will be logged to the Event Viewer that says: Warning: Could not create stdoutLogFile \?\YourPath\logs\stdout_timestamp.log, ErrorCode = -2147024893. The “stdout” part of the value “.\logs\stdout” actually references the filename not the folder. Which is a bit confusing. Run your request again, then open the \logs\stdout_*.log file

Note – you will want to turn this off after you’re done troubleshooting, as it is a performance hit.

So your web.config’s aspNetCore element should look something like this

<aspNetCore processPath=”.\YourProjectName.exe” stdoutLogEnabled=”true” stdoutLogFile=”.\logs\stdout” />

Solution 4

Enable DetailedErrorsKey in the Program.cs so you can figure it out what's happening.

WebHost.CreateDefaultBuilder(args)
    .UseSetting(WebHostDefaults.DetailedErrorsKey, "true")

Solution 5

Try executing the application by firing the command

dotnet myapplicationname.dll

This shall throw the startup errors and may help you narrow down the error.

Share:
43,088
Arvind Sisara
Author by

Arvind Sisara

I have more than 6 years experiences in Asp.Net MVC 4,5,6, C#, EntityFramWork, Jquery, Nopcommerce, REST API, AngulaJS, Asp.Net Boilerplate, SQL Server. So, I think you’ll find, I have the skills you’re looking for. Recently I have successfully completed so many projects. For more information will you please visit my work history. Success is my main aim. I gain success by hock or by crook. And I have a strong belief that I will be able to satisfy you.

Updated on August 06, 2021

Comments

  • Arvind Sisara
    Arvind Sisara almost 3 years

    I have upgraded asp.net core 1.1 to an asp.net core 2. It runs fine on the local server, but when I try to deploy it to an Azure hosted web app, I received the error:

    An error occurred while starting the application. .NET Core

    4.6.00001.0 X86 v4.0.0.0 | Microsoft.AspNetCore.Hosting version 2.0.0-rtm-26452 | Microsoft Windows 6.2.9200

    enter image description here

    Any ideas?