serg.salo
serg.salo

Reputation: 580

Azure websites complaining Role environment . FAILED TO INITIALIZE on startup

my question is similar to Azure websites complaining Role environment . FAILED TO INITIALIZE

Error that I see in the Azure App Service Support Event Viewer:

" 9236 w3wp Role environment . FAILED TO INITIALIZE. hr: -2147024891 "

It happens every single time on startup of the website. Other than that - website functions just fine. Except, randomly (it might take 10-30 minutes) it stops with "The application was terminated." (i see this error through azure application logs). I am not sure if these two things are related, but I am trying to first fix the "FAILED TO INITIALIZE" issue.

I don't have references to RoleEnvironment anywhere in my code (some users on StackOverflow mentioned that this might be an issue).

I read through many posts but none seem to work for my case.

Upvotes: 4

Views: 5804

Answers (2)

serg.salo
serg.salo

Reputation: 580

So, the issue was the reference to "Microsoft.WindowsAzure.Configuration". Once this assembly is not referenced anymore - no more errors on startup. Apparently, this assembly is designed to be used with Cloud Services, not Web Applications.

Upvotes: 2

Richard
Richard

Reputation: 78

Check your Web.Config for references to Microsoft.WindowsAzure.Diagnostics” or “Microsoft.WindowsAzure.ServiceRuntime"

If you have these , they are designed for use with Cloud services and not required or needed with Web Apps.

Upvotes: 3

Related Questions