oos alert issue

sns 9,226 Reputation points
2020-08-10T08:16:29.307+00:00

I recieved alert below

Alert: Application Pool disabled due to worker process failure

Alert description: Application pool 'HostingService' is being automatically disabled due to a series of failures in the process(es) serving that application pool.

I verifed event logs from OOS server, Please find the error from event logs in the attached text16687-ooserror.txt

what could be the cause of this error and what needs to be done. Please help

SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,818 questions
0 comments No comments
{count} votes

Accepted answer
  1. MichaelHan-MSFT 18,016 Reputation points
    2020-08-14T08:11:39.177+00:00

    Hi @sns ,

    From the event log you provided, it means w3wp.exe file crashes. And IIS uses worker processes (w3wp.exe file in Windows) to handle client requests. So you get the Alert: Application Pool disabled due to worker process failure. You could refer to this article: w3wp.exe crash

    For your issuse, it's the Exception code: 0xe0434352

    Exception code 0xe0434352: This is a generic CLR exception code. It is thrown when there is an internal issue in the application. In most cases, it is either System.NullReferenceException or System.ArgumentException
    There is no straightforward way to solve these kind of issues. I would recommend debugging the application in Visual Studio to get more details. In case you don’t have access to the source code, you can use DebugDiag or WinDbg for further troubleshooting.


3 additional answers

Sort by: Most helpful
  1. MichaelHan-MSFT 18,016 Reputation points
    2020-08-11T02:33:55.757+00:00

    This is the IIS feature Rapid-Fail Protection. By default an App Pool is configured to become disabled if a worker in the pool crashes 5 times within a 5 minute span. Please refer to this post: application-pool-defaultapppool-is-being-automatically-disabled-due-to-a-serie

    You could try to restart the application pool:

    Go to your IIS, select the Application pool 'HostingService'. Right click the application pool, select Start.


  2. sns 9,226 Reputation points
    2020-08-13T11:31:25.607+00:00

    Hi Michael Han,

    Did you have a chance to look in to above thread?

    0 comments No comments

  3. MichaelHan-MSFT 18,016 Reputation points
    2020-08-14T09:33:06.527+00:00

    Hi sns1,

    It's not the "hosting service" app pool crash. It's the w3wp.exe crashes, so the app pool would be disabled automatically due to w3wp.exe failures.

    The default values are "5 failures" in "5 minutes" for app pools.

    By changing this, it would change the Rapid-Fail Protection feature. You would not get the alert again. But this error would still exist in the event log.

    Since there is no straightforward way to solve these kind of issues. It you want to find the cause of this issue, I would suggest open a ticket with Microsoft to have a dedicated Technical Professional to support you from there.