Windows系统服务器IIS7.5默认最多只能处理5000个同时请求,如果网站同时请求超过5000,从而出现了下面的错误。
rror Summary:
HTTP Error 503.2 - Service Unavailable
The serverRuntime@appConcurrentRequestLimit setting is being exceeded.
Detailed Error Information:
Module IIS Web Core
Notification BeginRequest
Handler StaticFile
Error Code 0x00000000
为了避免这样的错误,需要根据相关文档调整设置,让服务器从设置上支持10万个并发请求。
具体设置如下:
一、调整IIS 7应用程序池队列长度
由原来的默认1000改为65535。
IIS Manager > ApplicationPools > Advanced Settings
Queue Length : 65535
二、 调整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" />
三、调整machine.config中的processModel>requestQueueLimit的设置
1、单击“开始”,然后单击“运行”。
2、在“运行”对话框中,键入 notepad %systemroot%\Microsoft.Net\Framework64\v4.0.30319\CONFIG\machine.config,然后单击“确定”。(不同的.NET版本路径不一样,你可以选择你自己当前想设置的.NET版本的config)
对于.net2.0对应的是
notepad %systemroot%\Windows\Microsoft.NET\Framework64\v2.0.50727\CONFIG\machine.config
.4.0
notepad %systemroot%\Microsoft.Net\Framework64\v4.0.30319\CONFIG\machine.config
3、找到如下所示的 processModel 元素:<processModel autoConfig="true" />
4、将 processModel 元素替换为以下值:<processModel enable="true" requestQueueLimit="100000" />
5、保存并关闭 Machine.config 文件。
由原来的默认5000改为100000:
<configuration>
<system.web>
<processModel enable="true" requestQueueLimit="100000"/>