狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

IIS應(yīng)用程序池頻繁崩潰的問題

admin
2011年2月28日 16:51 本文熱度 3489

昨天協(xié)助一個(gè)朋友處理了他們公司服務(wù)器上面IIS應(yīng)用程序池頻繁崩潰的問題 。


1.錯(cuò)誤日志文件如下



【注意】 該文件位于 C:\WINDOWS\system32\LogFiles\HTTPERR 目錄下



另外,IIS還會(huì)有一個(gè)日志,就是下面屬性窗口中指定的





分析下來,這個(gè)錯(cuò)誤日志中主要包含了三類錯(cuò)誤


2009- 05-30 10:43:27 203.208.60.137 48675 210.192.111.49 80 HTTP/1.1  GET /showroom/vulpes/product-detail/LRPST/Rubber-Series -  2006987705 Connection_Abandoned_By_AppPool MyApplicationPool :這個(gè) 錯(cuò)誤是說,連接被強(qiáng)制拋棄。
2009-05-30 11:25:50 211.167.234.158  13284 210.192.111.49 80 - - - - - Timer_ConnectionIdle -
2009-05-30 10:53:05 211.139.116.67 27664 210.192.111.49 80 -  - - - - Timer_MinBytesPerSecond - 這兩個(gè)錯(cuò)誤是與時(shí)間有關(guān)的。


2.分析錯(cuò)誤原因


對(duì)于Timer_ConnectionIdle和 Timer_MinBytesPerSecond ,可以考慮下面的處理措施


IIS6.0系統(tǒng)日志 中出現(xiàn)此錯(cuò)誤Timer_MinBytesPerSecond, Timer_ConnectionIdle


Description: The Error means The connection with the server has been terminated.


問題描述:這個(gè)錯(cuò)誤是由于服 務(wù)器連接被中斷導(dǎo)致的。


If you check out the C:"Windows"system32"LogFiles"HTTPERR"httperr*.log files on the distribution server, you'll likely see either Timer_MinBytesPerSecond errors or Timer_ConnectionIdle errors.These are caused by IIS' default settings, contained within its metabase, which define the minimum traffic flow rate for a connection to be kept alive and the maximum idle time allowed before a connection is dropped.For some reason, SUS servers seem to take their good old time while downloading updates, and these parameters are exceeded and the distribution server drops 'em.


這個(gè)問題是由于在某些應(yīng)用下,IIS的默認(rèn)設(shè)置不當(dāng)?shù)?/P>

1) From IIS Manager, right click on the Internet Information Server (IIS) Manager root level folder and go to Properties.Check the box to enable direct metabase editing.Click OK.


1)打開Internet 信息服務(wù)(IIS )管理器,右鍵點(diǎn)“我的計(jì)算機(jī)”——屬性,選上 “允許直接編輯配置數(shù)據(jù)庫(N)”,確定。


2) Open the C:\Windows\system32\inetsrv\MetaBase.xml file in Notepad.Do a search for "MinFileBytesPerSec".Change the setting for MinFileBytesPerSec from 240 to 0.Do another search, this time for "ConnectionTimeout" to be 600.Save changes and exit.


2)編輯 C:"Windows"system32"inetsrv"MetaBase.xml文件,把MinFileBytesPerSec 參 數(shù)值從240改為0,把ConnectionTimeout參數(shù)設(shè)成600。


3) Restart the IIS Admin service to effect the changes.


對(duì)于 Connection_Abandoned_By_AppPool 的錯(cuò)誤,經(jīng)過分析大多都是因?yàn)閼?yīng)用程序本 身的異常導(dǎo)致了程序池的工作進(jìn)程不斷重啟。為此,我用了一個(gè)global.asax文 件,來接管所有未處理的異常


<%@ Application   Language="C#" %>
<%@ Import Namespace="System.IO" % >
<script RunAt="server">
    protected void  Application_Error(object sender, EventArgs e)
    {
        string errorLog = Server.MapPath("Error.log");
        FileStream fs = new FileStream (errorLog,FileMode.Append,FileAccess.Write);
         StreamWriter sw = new StreamWriter(fs);
         sw.WriteLine("時(shí)間:{0},錯(cuò)誤消息:{1},地址:{2}",  DateTime.Now.ToString(), Server.GetLastError ().InnerException.Message,Request.Url.AbsolutePath);
         Server.ClearError();
        sw.Close();
     }
</script>


同時(shí),一定要確保web.config中將調(diào) 試模式設(shè)置為false



該文章在 2011/2/28 16:51:15 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國(guó)內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲(chǔ)管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved