Separate application pools for ASP.net applications in IIS

后端 未结 9 879
小鲜肉
小鲜肉 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 03:43

    This really depends on the applications, your security model, and how much you trust the applications.

    Here are a few things that I always tell people to consider when working with application pools.

    • Use separate application pools if each application needs different access to system resources. (Can use multiple process accounts)
    • If an application is a resource hog, mission critical, or an "unknown", it is best to put it in to its own pool to isolate it from the rest of the system

提交回复
热议问题