IIS 7.5 + Windows Server 2008 R2 + ASP.NET 4.0 HTTP 500 错误?

IIS 7.5 + Windows Server 2008 R2 + ASP.NET 4.0 HTTP 500 错误?

我遇到了一个无法追踪的问题,我浏览了论坛,但没有找到任何有用的信息。我全新安装了 Server 2008 R2 Web,并尝试加载我在运行 IIS 7.5 并使用 ASP.NET 4.0 的 Windows 7 计算机上创建和测试的应用程序。在开发计算机上,一切都运行正常。但是,当我使用 Web 部署工具将其移动到服务器时,我现在收到 HTTP 500 错误,但没有任何信息:

Module AspNetInitClrHostFailureModule
Notification BeginRequest
Handler StaticFile
Error Code 0x80070002
Requested URL http://192.168.1.83:80/
Physical Path C:\JustStreamIt
Logon Method Not yet determined
Logon User Not yet determined
Failed Request Tracing Log Directory C:\inetpub\logs\FailedReqLogFiles

在我的跟踪文件中我得到:

  1. 查看跟踪警告 -SET_RESPONSE_ERROR_DESCRIPTION
    错误说明 在 Web 服务器的应用程序事件日志中可以找到一条错误消息,详细说明此特定请求失败的原因。请查看此日志条目以找出导致此错误发生的原因。

  2. 查看跟踪警告 -MODULE_SET_RESPONSE_ERROR_STATUS ModuleName AspNetInitClrHostFailureModule
    通知 1
    HttpStatus 500
    HttpReason 内部服务器错误
    HttpSubStatus 0
    ErrorCode 2147942402
    ConfigExceptionInfo
    通知 BEGIN_REQUEST
    ErrorCode 系统找不到指定的文件。(0x80070002)

我在应用程序日志中得到以下内容:

日志名称:应用程序
来源:Microsoft-Windows-IIS-W3SVC-WP
日期:2010 年 5 月 28 日下午 2:08:10
事件 ID:2299
任务类别:无
级别:错误
关键字:经典
用户:N/A
计算机:win-ltfkdo1dnfp
描述:应用程序报告不健康。工作进程现在将请求回收。给出的原因:可以在 Web 服务器的应用程序事件日志中找到详细说明此特定请求失败原因的错误消息。请查看此日志条目以找出导致此错误发生的原因。。数据是错误。

Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Microsoft-Windows-IIS-W3SVC-WP" Guid="{670080D9-742A-4187-8D16-41143D1290BD}" EventSourceName="W3SVC-WP" />
<EventID Qualifiers="49152">2299</EventID>
<Version>0</Version>
<Level>2</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x80000000000000</Keywords>
<TimeCreated SystemTime="2010-05-28T21:08:10.000000000Z" />
<EventRecordID>1663</EventRecordID>
<Correlation />
<Execution ProcessID="0" ThreadID="0" />
<Channel>Application</Channel>
<Computer>win-ltfkdo1dnfp</Computer>
<Security />
</System>
<EventData>
    <Data Name="Reason">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.
</Data>
<Binary>02000780</Binary>
</EventData>
</Event>  

有人对我应该从哪里开始寻找有什么建议吗?

相关内容