惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recorded Future
Recorded Future
C
Cyber Attacks, Cyber Crime and Cyber Security
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Scott Helme
Scott Helme
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Palo Alto Networks Blog
Google Online Security Blog
Google Online Security Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
WordPress大学
WordPress大学
博客园 - 聂微东
L
LINUX DO - 最新话题
月光博客
月光博客
小众软件
小众软件
T
Troy Hunt's Blog
A
Arctic Wolf
量子位
I
Intezer
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
S
Schneier on Security
Schneier on Security
Schneier on Security
NISL@THU
NISL@THU
T
Threat Research - Cisco Blogs
TaoSecurity Blog
TaoSecurity Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
有赞技术团队
有赞技术团队
N
News and Events Feed by Topic
美团技术团队
The Cloudflare Blog
P
Privacy International News Feed
S
Security Affairs
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
GRAHAM CLULEY
N
News | PayPal Newsroom
Apple Machine Learning Research
Apple Machine Learning Research
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LINUX DO - 热门话题
V
Vulnerabilities – Threatpost
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
C
CXSECURITY Database RSS Feed - CXSecurity.com
宝玉的分享
宝玉的分享
Application and Cybersecurity Blog
Application and Cybersecurity Blog
IT之家
IT之家
Hacker News: Ask HN
Hacker News: Ask HN
雷峰网
雷峰网

博客园 - 子风

Android相关转载帖子 c++ 函数的工作原理 C和C++的存储模式 VS2005配置开发ARM c++ 虚析构函数的思考 arm-linux-g++ 下交叉编译libxml2 (转)Eclipse代码提示功能设置(Java & C/C++) linux下面eclipse的c++配置 VS2008 配置boost 用VS.NET2008打包程序遇到不可恢复的生成错误的解决方案 推荐一个原型的设计软件 Mockups For Desktop Grid++Report——推模式下填充子报表 c# 对象的创建过程 Failure sending mail - 子风 css总结 asp.net缓存-数据依赖缓存 - 子风 - 博客园 .net 测试工具 .net 发送Email 利用7z来分卷压缩文件
XP下IIS错误:Server Application Error
子风 · 2010-07-02 · via 博客园 - 子风

xp系统
1、Server Application Error 问题
a 控制面板-管理工具-服务,寻找DTC服务(全名:Distributed Transaction Coordinator)
b 手动启动DTC
c msdtc 是否启动(net start msdtc)
d 注意一点:信息服务-默认网站-属性-选择应用程序保护:选择 低(IIS进程))

2、Server Application Error

在XP上安装IIS,在本地可以正常浏览HTML文件(HTML就算没装IIS也可以正常浏览),却无法解析ASP文件,打开ASP文件时就出现“HTTP 500”的错误信息。把“显示友好HTTP错误信息”去掉,再打开ASP文件时出现:
  Server Application Error
  The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance
  出现这样的情况是主要是由于IWAM账号的密码错误造成了HTTP 500内部错误。
  排除了一些基本的可能性外,在网上搜寻了一下解决办法。最后终于解决了这个问题,在此分享一下。
  先启动MSDTC服务,什么是MSDTC服务?显示名称:Distributed Transaction Coordinator;描述:协调跨多个数据库、消息队列、文件系统等资源管理器的事务。如果停止此服务,则不会发生这些事务。如果禁用此服务,显式依赖此服务的其他服务将无法启动。
CMD下net start msdtc
  结果显示“distributed transaction coordinator 服务不能启动”。
解决方法:
  开始-运行 cmd
  在命令行下: msdtc -resetlog
  再net start msdtc,显示服务启动成功了。
  然后右键我的电脑--管理--本地用户和组,给IUSR_机器名和IWAM_机器名两个用户设置密码,要一样。
  接着开始--运行--打cmd,
  然后cd C:\Inetpub\AdminScripts,
  然后cscript.exe adsutil.vbs set w3svc/wamuserpass 你设置的密码,
  然后cscript.exe adsutil.vbs set w3svc/anonymoususerpass 你设置的密码。
  看一下,行了没有?如果还不行,那么
  cscript.exe synciwam.vbs -v,
  然后iisreset。
  到一步还是不行,最后在CMD下执行以下命令:
  cd %windir%\system32\inetsrv
  rundll32 wamreg.dll, CreateIISPackage
  regsvr32 asptxn.dll
  关闭所有的IE窗口后重新打开再执行,OK了!!

转至:http://blog.sina.com.cn/s/blog_5f918ed20100h0pq.html

学习,积累中......