Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows Server系統教程 >> Server 2008 >> windows Server 2008 IIS7 503錯誤解決方案

windows Server 2008 IIS7 503錯誤解決方案

日期:2017/2/10 9:54:02      編輯:Server 2008
  windows 2008 R2 在訪問的時候經常會出理 503錯的解決方案

  Error Summary:

  HTTP Error 503.2 - Service Unavailable

  The serverRuntime@appConcurrentRequestLimit setting is being exceeded.

  Detailed Error Information:

  Module IIS Web Core

  Notification BeginRequest

  Handler StaticFile

  Error Code 0x00000000

  由於之前使用的是默認配置,服務器最多只能處理5000個同時請求,今天下午由於某種情況造成同時請求超過5000,從而出現了上面的錯誤。

  為了避免這樣的錯誤,我們根據相關文檔調整了設置,讓服務器從設置上支持10萬個同時請求。

  具體設置如下:

  1. 調整IIS 7應用程序池隊列長度

  由原來的默認1000改為65535。

  IIS Manager > ApplicationPools > Advanced Settings

  Queue Length : 65535

  2. 調整IIS 7的appConcurrentRequestLimit設置

  由原來的默認5000改為100000。

  c:\windows\system32\inetsrv\appcmd.exe set config /section:serverRuntime /appConcurrentRequestLimit:100000

  在%systemroot%\System32\inetsrv\config\applicationHost.config中可以查看到該設置:

  3. 調整machine.config中的processModel>requestQueueLimit的設置

  由原來的默認5000改為100000。

  復制代碼

  參考文章:http://technet.microsoft.com/en-us/library/dd425294(office.13).aspx

  4. 修改注冊表,調整IIS 7支持的同時TCPIP連接數

  由原來的默認5000改為100000。

  reg add HKLM\System\CurrentControlSet\Services\HTTP\Parameters /v MaxConnections /t REG_DWORD /d 100000

  完成上述4個設置,就可以支持10萬個同時請求,西西軟件服務器已經啟用上述設置。
Copyright © Windows教程網 All Rights Reserved