SharePoint - 浅谈Application Pool

Posted Tina Yi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SharePoint - 浅谈Application Pool相关的知识,希望对你有一定的参考价值。

 我们都知道IIS中application pool用来处理和执行WFE server接收到的请求,它与IIS website和SharePoint web application关联。从技术上来讲,一个application pool是Windows中一个名为w3wp.exe的进程。

在SharePoint中,我们在创建web application或者service application时候必须要设置使用的application pool,所以设置application pool会有两种类型,被web application使用和被service application使用的application pool。同时也可以设置新建application pool或者使用已存在的application pool。

不过从安全角度来说,最好是为每个web/service application设置单独的application pool。但是,我们都知道这种方法会在WFE/APP server上消耗更多的RAM,从而影响性能。并且多个进程同时工作也可能消耗更多的内存。

基于以上考虑,Microsoft建议每台server最多有10个application pool。这就需要我们在使用application pool之前进行规划,尽可能保证每台服务器最多有10个application pool使用。

在之后的维护期间内,因为某些需求的变化,我们要修改web application的application pool时候,可以参考下面powershell command。

Function Set-WebApplicationPool ($WebAppURL,$ApplicationPoolName) 

    $apppool = [Microsoft.SharePoint.Administration.SPWebService]::ContentService.ApplicationPools | where $_.Name -eq $ApplicationPoolName 

    if ($apppool -eq $null) 

        write-host -foreground red "The Application Pool $ApplicationPoolName does not exist!" 

        return 1 

     

    $webapp = get-spwebapplication -Identity $WebAppUrl 

    if ($webapp -eq $null) 

        write-host -foreground red "The Web Application $WebAppUrl does not exist!" 

        return 1 

     

    $webapp.Applicationpool = $apppool 

    $webApp.Update() 

    $webApp.ProvisionGlobally() 

    write-host -foreground green "$WebappURL Application Pool has been changed to $ApplicationPoolName" 

    return 0 

 

 Set-WebApplicationPool -WebAppURL "http://WebAppURL" -ApplicationPoolName "ApplicationPoolName"

执行完成后,建议到web application中check,同时要保证IIS application pool也正常工作,并访问site collection验证。

感谢阅读。

以上是关于SharePoint - 浅谈Application Pool的主要内容,如果未能解决你的问题,请参考以下文章

Office 365 SharePoint 迁移浅谈 使用Migration Tools

Office 365 SharePoint 迁移浅谈 开篇介绍

Microsoft 365 - 浅谈SharePoint Hub Site

SharePoint 开发篇:浅谈Web Part和Page Layout 开发

Office 365 SharePoint 迁移浅谈 使用SP Migration API迁移

浅谈Rapid Web Application