在Windows 2008中设置appConcurrentRequestLimit

时间:2013-02-18 14:50:50

标签: windows iis

我从SO(HTTP Error 503.2 - Service Unavailable. The serverRuntime@appConcurrentRequestLimit setting is being exceeded)和MSDN(http://technet.microsoft.com/en-us/library/dd425294(v=office.13).aspx)中读取我需要将AppConCurrentRequestLimit设置为更大的数字,如果该网站显示appconcurrentlimit超出错误(我的是这样)。 / p>

然而,在执行MSDN提供的命令时,我收到错误

c:\Windows\System32\inetsrv>appcmd.exe set config /section:serverRuntime /appCon
currentRequestLimit:100000
ERROR ( message:Unknown attribute "appConcurrentRequestLimit".  Replace with -?
for help. )
  1. 我尝试在谷歌搜索,但似乎没有人和我有同样的问题。
  2. 我尝试在XML中手动输入ASPNET.Config,但无论我改变网站似乎都没有重启,即使我在配置中放入随机错误文本,我的网站仍然没有显示错误,是ASPNET.Config配置正在使用,为什么没有错误,即使配置故意造成错误?

1 个答案:

答案 0 :(得分:0)

如果您有其他部分,例如ftpsection,则会失败。 要编辑system.webserver部分的serverRuntime,您应该运行:

cd %windir%\system32\inetsrv
appcmd.exe set config /section:system.webserver/serverRuntime /appConcurrentRequestLimit:100000