1. IIS7中应用程序池队列长度调整为65535(默认为1000)
打开IIS7管理器,选择应用程序池,右键选择应用程序池,选择高级设置,把1000改为65535
2. IIS7的appConcurrentRequestLimit调正为100000(默认5000)
方法:
命令行:C:\windows\system32\inetsrv\appcmd.exe set config /section:serverRuntime /appConcurrentRequestLimit:100000
在%systemroot%\System32\inetsrv\config\applicationHost.config的节点serverRuntim可以看到此设置
<serverRuntime appConcurrentRequestLimit="100000" />
3. machine.config中的请求队列限制requestQueueLimit调正为100000(默认5000)
方法:<processModel enable="true" requestQueueLimit="100000"/>
4. 修改注册表,调正IIS7支持的TCP/IP连接数量为100000(默认5000)
machine.config路径:C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config(64位.net framework 4.0, 如果是其他的版本请根据各自实际情况)
注册表命令:
reg add HKLM\System\CurrentControlSet\Services\HTTP\Parameters /v MaxConnections /t REG_DWORD /d 100000