讓Windows Server 2008 + IIS 7+ ASP.NET 支持10萬併發請求

原文:http://www.cnblogs.com/dudu/archive/2009/11/10/1600062.htmlphp

 

今天下午17點左右,博客園博客站點出現這樣的錯誤信息:html

Error Summary:web

HTTP Error 503.2 - Service Unavailable
The serverRuntime@appConcurrentRequestLimit setting is being exceeded. windows

Detailed Error Information:服務器

Module IIS Web Core 
Notification BeginRequest 
Handler StaticFile 併發

Error Code 0x00000000app

因爲以前使用的是默認配置,服務器最多隻能處理5000個同時請求,今天下午因爲某種狀況形成同時請求超過5000,從而出現了上面的錯誤。async

爲了不這樣的錯誤,咱們根據相關文檔調整了設置,讓服務器從設置上支持10萬個併發請求。code

具體設置以下:orm

1. 調整IIS 7應用程序池隊列長度

由原來的默認1000改成65535。

IIS Manager > ApplicationPools > Advanced Settings

Queue Length : 65535

2.  調整IIS 7的appConcurrentRequestLimit設置

由原來的默認5000改成100000。

c:\windows\system32\inetsrv\appcmd.exe set config /section:serverRuntime /appConcurrentRequestLimit:100000

在%systemroot%\System32\inetsrv\config\applicationHost.config中能夠查看到該設置:

<serverRuntime appConcurrentRequestLimit="100000" /> 

3. 調整machine.config中的processModel>requestQueueLimit的設置

(Machine Config文件的默認位置是%windir%\Microsoft.NET\Framework\framework_version\CONFIG.)

(如:C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config)

由原來的默認5000改成100000。

<configuration>
    <system.web>
        <processModel enable="true" requestQueueLimit="100000"/>

參考文章:http://technet.microsoft.com/en-us/library/dd425294(office.13).aspx

4. 修改註冊表,調整IIS 7支持的同時TCPIP鏈接數

由原來的默認5000改成100000。

reg add HKLM\System\CurrentControlSet\Services\HTTP\Parameters /v MaxConnections /t REG_DWORD /d 100000 

5. 運行命令使用設置生效 

net stop http  & net start  http & iisreset 

完成上述4個設置,就能夠支持10萬個併發請求,博客園博客服務器已經啓用上述設置。 

參考文章:

IIS 7.0 503 errors with generic handler (.ashx) implementing IHttpAsyncHandler

Tuning Windows Server 2008 for PHP 

相關文章
相關標籤/搜索