让Windows Server 2008 + IIS 7+ ASP.NET 支持10万并发请求 The serverRuntime@appConcurrentRequestLimit setting
一年好景君须记,最是橙黄橘绿时。这篇文章主要讲述让Windows Server 2008 + IIS 7+ ASP.NET 支持10万并发请求 The serverRuntime@appConcurrentRequestLimit setting 相关的知识,希望能为你提供帮助。
今天下午17点左右,博客园博客站点出现这样的错误信息:
Error Summary:
HTTP Error 503.2 - Service Unavailable
The [email
protected] setting is being exceeded.
【让Windows Server 2008 + IIS 7+ ASP.NET 支持10万并发请求 The serverRuntime@appConcurrentRequestLimit setting】Detailed Error Information:
Module IIS Web Core
Notification BeginRequest
Handler StaticFile
Error Code 0x00000000
由于之前使用的是默认配置,服务器最多只能处理5000个同时请求,今天下午由于某种情况造成同时请求超过5000,从而出现了上面的错误。
为了避免这样的错误,我们根据相关文档调整了设置,让服务器从设置上支持10万个并发请求。
具体设置如下:
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的设置
由原来的默认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 starthttp & iisreset
完成上述4个设置,就可以支持10万个并发请求,博客园博客服务器已经启用上述设置。
参考文章:
IIS 7.0 503 errors with generic handler (.ashx) implementing IHttpAsyncHandler
Tuning Windows Server 2008 for PHP
推荐阅读
- 使用Java Service Wrapper将jar包安装成Windows服务
- Android layout属性大全
- Android Studio2.2.3配置OpenCV3.1.0且不安装OpenCV Manager运行
- 007.Adding a view to an ASP.NET Core MVC app -- 在asp.net core mvc中添加视图
- VS2017 Xamarin开发Android时首次部署完成后直接闪退
- 龙进信息“徐汇城管”APP,高效助力城管执法
- Android 在Fragment中执行onActivityResult不被调用的简单解决方法
- Android SDK代理服务器解决国内不能更新下载问题
- Mybatis Mapper代理的开发方式