Table of Contents

Fix: IIS error: serverruntime@appconcurrentrequestlimit setting is being exceeded

Summary: Fix the IIS error serverruntime@appconcurrentrequestlimit setting is being exceeded
Date: 23 September 2022
Refactor: 15 December 2024: Checked formatting and added some context.

,

This error happens on IIS when a IIS server is overloaded. By default, the app pool in which the sites live have limited concurrent requets configured. You need to change three settings as shown below. Don't forget to reboot the server afterwards. This was done and tested successful on a Windows Server 2016 with IIS 10.0

Change App Pool Queue Length

Open IIS manager:

appConcurrentRequestLimit

Open an administrative command prompt:

This adds the following line to C:\Windows\System32\inetsrv\config\applicationHost.config:

requestQueueLimit

Reboot the server.