Error "HTTP Error 503.2 - Service Unavailable. The serverRuntime@appConcurrentRequestLimit setting is being exceeded".

Kallol Saha 1 Reputation point
2022-05-14T15:08:11.253+00:00

Whenever we are running the application, it is giving the error "While running the application, getting the error "HTTP Error 503.2 - Service Unavailable. The serverRuntime@appConcurrentRequestLimit setting is being exceeded". How to resolve the problem?

Internet Information Services
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. T. Kujala 8,701 Reputation points
    2022-05-15T04:22:43.503+00:00

    Hi @Kallol Saha ,

    Probably, there is something with an IIS worker process. It handles requests.

    In IIS Manager, select the server node from the tree, then the "Worker Processes" feature icon, then right-click the application pool and select "View current requests".

    202051-worker-processes.jpg

    0 comments No comments

  2. Sam Wu-MSFT 7,036 Reputation points Microsoft Vendor
    2022-05-16T03:27:30.033+00:00

    @Kallol Saha

    There are many reasons for this error, you can try below methods:

    1. The adjusting IIS application pool queue length

    IIS Manager > ApplicationPools > Advanced Settings > Queue Length

    2. Adjust the IIS appConcurrentRequestLimit settings

    In the %systemroot%\System32\inetsrv\config\applicationHost.config can change this setting:

    <serverRuntime appConcurrentRequestLimit="100000" />

    3. Adjust in machine.config processModel requestQueueLimit provided

    <processModel enable="true" requestQueueLimit="100000"/>

    Reference article: http://technet.microsoft.com/en-us/library/dd425294(office.13).aspx

    4. Run the command to take effect

    net stop http & net start http & iisreset


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments