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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - 子风

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

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