顾客每次打开BS模块非常慢,比如登入系统后,消息要20S多才能显示消息界面,通过Fiddler跟踪,从服务器接收请求到开始请求需要等待20S左右:
ACTUAL PERFORMANCE
--------------
ClientConnected: 10:47:57.037
ClientBeginRequest: 10:47:57.037
ClientDoneRequest: 10:47:57.037
Gateway Determination: 2558ms
DNS Lookup: 0ms
TCP/IP Connect: 0ms
ServerConnected: 10:47:59.598
FiddlerBeginRequest: 10:47:59.598
ServerGotRequest: 10:47:59.598
ServerBeginResponse: 10:48:16.387
ServerDoneResponse: 10:48:16.387
ClientBeginResponse: 10:48:16.387
ClientDoneResponse: 10:48:16.387
在服务器的事件查看器中发现应用程序有报错:
错误应用程序名称: w3wp.exe,版本: 7.5.7601.17514,时间戳: 0x4ce7a5f8
错误模块名称: KERNELBASE.dll,版本: 6.1.7601.17514,时间戳: 0x4ce7bafa
异常代码: 0xe0434f4d
错误偏移量: 0x0000b727
错误进程 ID: 0x1c80
错误应用程序启动时间: 0x01ce7d22cdede782
错误应用程序路径: C:\Windows\SysWOW64\inetsrv\w3wp.exe
错误模块路径: C:\Windows\syswow64\KERNELBASE.dll
Application ID: /LM/W3SVC/1/ROOT/EnjoyRMIS_Client
Process ID: 7312
Exception: System.UnauthorizedAccessException
Message: 对路径“D:\WebRoot\EnjoyRMIS_Client\bbs\cache\scheduleeventfaildlog.config”的访问被拒绝。
同时在IIS也有预警:
为应用程序池“DefaultAppPool”提供服务的进程在与 Windows Process Activation Service 通信时出现严重错误。该进程 ID 为“7296”。数据字段包含错误号。
最终锁定这个问题是应用程序池有问题,被重新启动了,最后新建应用池,将原网站的应用池指向新建应用池,问题得到解决。