Increasing Server Scalability Parent topic

Depending on your requirements, you can increase the server scalability and improve server performance.

Procedure

  1. Open the Internet Information Services (IIS) Manager, and select the server on which you want to perform this procedure.
  2. Click Application Pools in the left pane, select the AppPool where Mobile Security is installed from the list in the center pane, and then click Advanced Settings... in the right pane.
    The Advanced Settings dialog box appears.
  3. On the Advanced Settings dialog box, make the following changes:
    1. Change the value of the parameter Queue Length to 65535.
    2. Change the value of the parameter Maximum Worker Processes to 5 or more.
  4. After making the changes, Click OK, and close the Internet Information Services (IIS) Manager.
  5. Open Windows Command prompt, and then do the following:
    1. Type the following command to change the value of IIS concurrent request limit to 100000:
      c:\windows\system32\inetsrv\appcmd.exe set config /section:serverRuntime /appConcurrentRequestLimit:100000
      Note
      Note
      To verify this change, open file applicationHost.config by typing command file %systemroot%\System32\inetsrv\config\applicationHost.config in the Command prompt, and then verify the value of parameter serverRuntime appConcurrentRequestLimit, which should be 100000.
    2. Type the following command to change IIS concurrent request limit to 100000 in the Windows registry:
      reg add HKLM\System\CurrentControlSet\Services\HTTP\Parameters /v MaxConnections /t REG_DWORD /d 100000