IIS Server is too busy 解决方法(IIS6)

Server is too busy意思是服务器繁忙,资源不够用

为什么会出现这个问题呢?

因为服务器的配置不同,所能承受的压力不同。

而服务器默认对链接数,线程数等有设置,但这个设置太小,基本不够用,所以我们要手动设置解决这个问题。

问题环境:windows2003+IIS6+.Net2.0

第一步:修改machine.config

.Net2.0版本用户就修改“C:WINDOWSMicrosoft.NETFramework v2.0.50727CONFIGmachine.config文件,

查找该文件中的“processModel”配置段落,修改其中的字段 maxWorkerThreads="200" maxIoThreads="200"

原来默认的是<processModel autoConfig="true" />

修改为<processModel maxWorkerThreads="200" maxIoThreads="200" />

第二步:修改web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.web>
    <httpRuntime appRequestQueueLimit="65535" />
  </system.web>
</configuration>
原文地址:https://www.cnblogs.com/webapi/p/5669102.html