IIS application pool not on server power up?

Hi I have a problem with one server and the problem is that the iis server does not automatically start one of the application pools that we have for one of our applications, but if you go to iis and right click on the application pool and click Start, application pools will start normally.

Any idea

Jean

0


a source to share


2 answers


Make sure the application pool is configured to autostart:

adsutil.vbs get w3svc/AppPools/DefaultAppPool/AppPoolAutostart

      

Chnage DefaultAppPool for your application pool name.



To configure it to start automatically, use

adsutil.vbs set w3svc/AppPools/DefaultAppPool/AppPoolAutostart true

      

+1


a source


Is the app being used in the AppPool depending on other services (like SQL) that might still be running?



I remember Skype being used to hijack my port 80 as IIS took too long to get started.

0


a source







All Articles