I have two .NET Applications that are deployed on to the Azure Virtual Machine Scalesets.
One of the App (App1) is running on NET 3 and App2 running on 2.1.
The App “App1” is working fine. However when I run App2, I am getting the below error
ASP.NET Core 3 and 500.30 In-Process Startup Failure
What causes the error 500.30 In-Preocess Startup Failure error ?
admin Answered question February 7, 2023
Check if the below steps helps you resolve the issue.
- Ensure that your appsettings.json file is valid.
- To run .NET 2.1 apps, you will need to have .NET 2.1 Hosting Bundle installed on your Azure VM. If you don’t have it, please install it
- Make sure that all connections to the databases from the server works as expected.
admin Answered question February 7, 2023
