天天看點

Server Application Unavailable出現的原因及解決方案集錦

在Asp.net 站點中經常出現這種提示

Server Application Unavailable 
The web application you are attempting to access on this web server is currently unavailable.  Please hit the "Refresh" button in your web browser to retry your request. 

Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occur. 
           

出現這種問題一般是有以下幾個原因: 1、Users組使用者對站點檔案沒有讀寫權限 解決辦法:給站點目錄設定users組讀寫權限 2、站點Asp.net版本選擇不正确 這種問題會出現在多版本FrameWork 共存的情況下,如Asp.net1.1和2.0,詳細請看 http://bbs.51aspx.com/showtopic-750.html 解決辦法:站點-》屬性-》選擇目前的Asp.net版本 3、應用程式池沖突 解決辦法:在應用程式池-》建立應用程式池,然後在站點-》屬性-》主目錄 選擇剛才建立的應用程式池 注意:以上三個原因可能會同時出現,逐漸解決就可以了 補充: 有時候會出現"Service Unavailable",這個是IIS7中的通用錯誤,一般原因是:同時線上使用者或帶寬超過限制、對應的站點位址池停掉(原因很多)等

繼續閱讀