Server is too busy means the server is busy and the resources are not sufficient
Why does this problem occur?
Because the server configuration is different, the pressure can withstand different.
and the server default to the number of links, the number of threads, etc. have set, but this setting is too small, basically not enough, so we have to manually set up to solve the problem.
Problem Environment: windows2003+iis6+.net2.0
First step: Modify Machine.config
. The Net2.0 version user modifies theC:\WINDOWS\Microsoft.NET\Framework \v2.0.50727\config\machine.config file,
Find the "processModel" configuration paragraph in the file and modify the fields maxworkerthreads= " " "" maxiothreads= "
The original default is <processmodel autoconfig= "true"/>
Modified to <processmodel maxworkerthreads= " " "maxiothreads="/>
Step Two: Modify the Web. config
<?xml version= "1.0" encoding= "UTF-8"?><configuration> <system.web>
IIS Server is too busy workaround (IIS6)