503

OK. Fixed... many thanks to this post for clearing up a few details.

To eliminate the 503 errors required 3 different config changes:

machine.config:

<configuration>
    ...
    <system.web>
        ...
        <processModel enable="true" requestQueueLimit="100000"/>

IIS Manager > ApplicationPools > Advanced Settings

Queue Length : 65535

and finally (the missing piece of the puzzle), the command line:

appcmd.exe set config /section:serverRuntime /appConcurrentRequestLimit:100000

The web.config setting mentioned in the main post was irrelevant.

10000 concurrent connections, no problems. Thanks for help!

相关文章:

  • 2021-04-23
  • 2022-01-10
  • 2022-12-23
  • 2021-10-25
  • 2021-07-14
  • 2022-01-17
  • 2021-07-08
猜你喜欢
  • 2022-12-23
  • 2021-12-31
  • 2021-11-22
  • 2021-11-15
  • 2021-08-31
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案