让Windows Server 2008 + IIS 7+ ASP.NET 支持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 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

完成上述4个设置,就可以支持10万个同时请求。

时间: 2024-10-17 20:35:25

让Windows Server 2008 + IIS 7+ ASP.NET 支持10万个同时请求的相关文章

让Windows Server 2008 + IIS 7+ ASP.NET 支持10万并发请求

让Windows Server 2008 + IIS 7+ ASP.NET 支持10万并发请求 今天下午17点左右,博客园博客站点出现这样的错误信息: Error Summary: HTTP Error 503.2 - Service UnavailableThe [email protected] setting is being exceeded. Detailed Error Information: Module IIS Web Core Notification BeginReques

让Windows Server 2008 + IIS 7+ ASP.NET 支持10万并发请求(转)

转自:http://www.cnblogs.com/dudu/archive/2009/11/10/1600062.html 今天下午17点左右,博客园博客站点出现这样的错误信息: Error Summary: HTTP Error 503.2 - Service UnavailableThe [email protected] setting is being exceeded. Detailed Error Information: Module IIS Web Core Notificat

让Windows Server 2008 + IIS 7+ ASP.NET 支持10万并发请求 The [email&#160;protected] setting is being exceeded.

今天下午17点左右,博客园博客站点出现这样的错误信息: Error Summary: HTTP Error 503.2 - Service UnavailableThe [email protected] setting is being exceeded. Detailed Error Information: Module IIS Web Core Notification BeginRequest Handler StaticFile Error Code 0x00000000 由于之前使

让Windows Server 2008 + IIS 7+ ASP.NET 支持10万并发请求(转载)

转自:http://www.cnblogs.com/dudu/archive/2009/11/10/1600062.html 今天下午17点左右,博客园博客站点出现这样的错误信息: Error Summary: HTTP Error 503.2 - Service UnavailableThe [email protected] setting is being exceeded. Detailed Error Information: Module IIS Web Core Notificat

让Windows Server 2008r2 IIS7.5 ASP.NET 支持10万并发请求

由于之前使用的是默认配置,服务器最多只能处理5000个同时请求,今天下午由于某种情况造成同时请求超过5000,从而出现了上面的错误. 为了避免这样的错误,我们根据相关文档调整了设置,让服务器从设置上支持10万个并发请求. 具体设置如下: 1. 调整IIS 7应用程序池队列长度 由原来的默认1000改为65535. IIS管理器 > 应用程序池 > 高级设置 队列长度: 65535 2.  调整IIS 7的appConcurrentRequestLimit设置 由原来的默认5000改为10000

修改Windows Server 2008+IIS 7+ASP.NET默认连接限制,支持海量并发连接数

WIN7中IIS7默认配置的服务器同时最多只能处理5000个请求,如果由于某些情况(程序问题等)造成同时请求超过5000时,将会导致服务器错误.为此,修改服务器的设置,从而支持10万个同时请求. 具体设置如下: 1. 调整IIS7应用程序池队列长度 依次打开,IIS管理器 > 应用程序池 > 高级设置,修改队列长度为65535. 2.  调整IIS 7的appConcurrentRequestLimit设置 打开%systemroot%\System32\inetsrv\config\appl

windows server 2008 x64 上asp.net 调用 word, excel 出错的解决方式

异常信息: System.Runtime.InteropServices.COMException message:内存不足,请现在保存文档 网上的一种方法是 但是,在64位机器上安装32位的office,在DCOM 配置里是找不到 word,excel的选项的. 下面用这个方法解决: This solution is ...?Windows 2008 Server x64 Please make this folder.C:\Windows\SysWOW64\config\systemprof

Windows Server 2008 IIS 并发请求设置

更新服务器的时候,突然发现部分机器出现了错误,大致描述如下 HTTP Error 503.2 - Service Unavailable 正在超过 [email protected] 设置的值. .... 服务器IIS基本都用的默认设置,为了避免下次再次出现此类错误,找了相关配置,提高IIS并发数量设置 1. 修改IIS应用程序池队列长度 高级设置里,队列长度修改为 65535 2. 修改IIS的 appConcurrentRequestLimit 设置 默认值是5000,修改为50000(或者

MVC 5 on Windows Server 2008/IIS 7

将网站部署在2008上,结果出现了 HTTP Error 403.14 - Forbidden The Web server is configured to not list the contents of this directory. 我实在不知道这TM是什么鬼. http://cdonner.com/mvc-5-on-windows-server-2008iis-7.htm 这个链接是原博客,以下说的是这个博客的意思. 正如这个博主所言,google了半天全是说要加上 <system.w