具体设置如下:
1. 调整IIS 7应用程序池队列长度
由原来的默认1000改为65535。
IIS Manager > ApplicationPools >Advanced Settings
Queue Length : 65535
2.
由原来的默认5000改为100000。
c:windowssystem32inetsrvappcmd.exe set config/section:serverRuntime /appConcurrentRequestLimi
在%systemroot%System32inetsrvconfigapplicationHost.config中可以查看到该设置:
3.调整machine.config中的processModel>requestQueueLimit的设置
由原来的默认5000改为100000。
4. 修改注册表,调整IIS 7支持的同时TCPIP连接数
由原来的默认5000改为100000。
reg add HKLMSystemCurrentControlSetServicesHTTPParameters /vMaxConnections /t REG_DWORD /d 1000000
完成上述4个设置,就可以支持10万个同时请求,博客园博客服务器已经启用上述设置。
参考文章:
IIS 7.0 503 errors with generic handler (.ashx) implementingIHttpAsyncHandler
Tuning
Windows Server 2008 for PHP
本文转自:http://www.cnblogs.com/dudu/archive/2009/11/10/1600062.html