1

我从 SO(HTTP 错误 503.2 - 服务不可用。超出 serverRuntime@appConcurrentRequestLimit 设置)和 MSDN(http://technet.microsoft.com/en-us/library/dd425294 (v=office.13).aspx ) 我需要将 AppConCurrentRequestLimit 设置为更大的数字,如果站点显示 appconcurrentlimit 超出错误(我的就是这样)。

但是在执行 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 配置,为什么即使配置是故意出错也没有错误?
4

1 回答 1

3

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

cd %windir%\system32\inetsrv
appcmd.exe set config /section:system.webserver/serverRuntime /appConcurrentRequestLimit:100000
于 2014-07-27T14:06:37.687 回答