IIS Error Solutions - jamesperrin/developer-training-resources GitHub Wiki
-
Troubleshooting:
- Attempt to access ULR and received HTTP Error 503 Service Unavailable.
- Log onto server and review Event log which indicate an error related to “The Module DLL C:\Windows\System32\inetsrv\HipIISEngineStub.dll failed to load. The data is the error.”.
-
Recommended solution steps:
- Navigate to
%windir%\system32\inetsrv\config\ - Open
applicationHost.configas Administrator. - In the
<globalModules>section, remove the following line:<add name=”MfeEngine” image=”%windir%\System32\inetsrv\HipIISEngineStub.dll” />
- In the
<modules>section, remove the following line:<add name=”MfeEngine” />
- Save the file.
- Restart the IIS server using the command iisreset or by restarting the system.
- Navigate to
-
Reference article: