-->

IIS App Pool and WAS stop automatically with with

2019-02-25 10:38发布

问题:

When starting the website, app pool stops automatically with some errors. Tried turning IIS and WAS features off and enabled. Didn't help. applicationhost.config file is proper and not corrupt

Below are the errors from event viewer

The worker process for application pool 'testpool' encountered an error 'Cannot read configuration file ' trying to read configuration data from file '\?\', line number '0'. The data field contains the error code.

The Windows Process Activation Service failed to generate an application pool config file for application pool 'testpool'. The error type is '5'. To resolve this issue, please ensure that the applicationhost.config file is correct and recommit the last configuration changes made. The data field contains the error number.

回答1:

Managed to find the root cause.

Tried running process monitor (procmon.exe) when starting the website. svchost.exe process is trying to create a folder in following location (C:\inetpub\temp\appPools) with app pools name.

And somehow there was a folder shortcut with name same as app pool. WAS process is trying to create the folder when starting the app pool. I have now cleared that folder and retried. It worked!



标签: asp.net iis was