Separate application pools for ASP.net applications in IIS

后端 未结 9 867
小鲜肉
小鲜肉 2021-02-01 02:59

I\'ve read recommendations that we should create separate application pools for each asp.net application on our Win2008 server.

We have about 20 apps that would be on t

9条回答
  •  孤街浪徒
    2021-02-01 04:00

    The main benefit of creating different application pools is that you can provide each pool with other credentials. Your 20 applications may communicate with 20 different databases that all need another login. The best practice then is to run each application using a different service account.

    I wouldn't worry too much about performance. Most time will probably be spent inside each web application, no matter what process each application is in.

提交回复
热议问题