Windows Server 2008 IIS 7 503錯誤解決方案
windows 2008 R2 在訪問的時候經(jīng)常會出理 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
由于之前使用的是默認配置,服務(wù)器最多只能處理5000個同時請求,今天下午由于某種情況造成同時請求超過5000,從而出現(xiàn)了上面的錯誤。
為了避免這樣的錯誤,我們根據(jù)相關(guān)文檔調(diào)整了設(shè)置,讓服務(wù)器從設(shè)置上支持10萬個同時請求。
具體設(shè)置如下:
1. 調(diào)整IIS 7應(yīng)用程序池隊列長度
由原來的默認1000改為65535。
IIS Manager > ApplicationPools > Advanced Settings
Queue Length : 65535
2. 調(diào)整IIS 7的appConcurrentRequestLimit設(shè)置
由原來的默認5000改為100000。
c:\windows\system32\inetsrv\appcmd.exe set config /section:serverRuntime /appConcurrentRequestLimit:100000
在%systemroot%\System32\inetsrv\config\applicationHost.config中可以查看到該設(shè)置:
3. 調(diào)整machine.config中的processModel>requestQueueLimit的設(shè)置
由原來的默認5000改為100000。
復(fù)制代碼
參考文章:http://technet.microsoft.com/en-us/library/dd425294(office.13).aspx
4. 修改注冊表,調(diào)整IIS 7支持的同時TCPIP連接數(shù)
由原來的默認5000改為100000。
reg add HKLM\System\CurrentControlSet\Services\HTTP\Parameters /v MaxConnections /t REG_DWORD /d 100000
完成上述4個設(shè)置,就可以支持10萬個同時請求,西西軟件服務(wù)器已經(jīng)啟用上述設(shè)置。
關(guān)鍵詞:IIS7,503錯誤
閱讀本文后您有什么感想? 已有 人給出評價!
- 0
- 0
- 0
- 0
- 0
- 0