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

推荐订阅源

S
Schneier on Security
GbyAI
GbyAI
H
Help Net Security
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
The Blog of Author Tim Ferriss
Vercel News
Vercel News
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
AWS News Blog
AWS News Blog
Spread Privacy
Spread Privacy
Apple Machine Learning Research
Apple Machine Learning Research
L
LINUX DO - 最新话题
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
P
Privacy International News Feed
C
CERT Recently Published Vulnerability Notes
C
Cybersecurity and Infrastructure Security Agency CISA
I
Intezer
Hugging Face - Blog
Hugging Face - Blog
H
Heimdal Security Blog
N
News and Events Feed by Topic
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Troy Hunt's Blog
大猫的无限游戏
大猫的无限游戏
SecWiki News
SecWiki News
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Application and Cybersecurity Blog
Application and Cybersecurity Blog
F
Fortinet All Blogs
Hacker News: Ask HN
Hacker News: Ask HN
Know Your Adversary
Know Your Adversary
Hacker News - Newest:
Hacker News - Newest: "LLM"
博客园 - 聂微东
S
Secure Thoughts
云风的 BLOG
云风的 BLOG
O
OpenAI News
The Cloudflare Blog
Jina AI
Jina AI
U
Unit 42
L
Lohrmann on Cybersecurity
Attack and Defense Labs
Attack and Defense Labs
The Register - Security
The Register - Security
G
Google Developers Blog
量子位
Simon Willison's Weblog
Simon Willison's Weblog
V
Visual Studio Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
G
GRAHAM CLULEY
TaoSecurity Blog
TaoSecurity Blog

博客园 - NetSoft

java - 环境变量 ubuntu - 网络文件夹访问 ubuntu - 查看硬盘占用情况 ubuntu - 查看系统资源占用(内存,cpu和进程) ubuntu - 配置IP地址 Ubuntu - 切换到管理员(root)身份 ubuntu - 下更改语言环境 reporting server改名 facebook是如何管理代码的 SIM卡编号的含意 Ubuntu iptables 内网端口映射 vi编辑器常用的命令及快捷键 64位windows 2003环境UNC部署权限设置 Linux常用的压缩及解压缩命令如表2-5所示。 Esxi开启putty链接 Android系统中自带的图标 Unparsed aapt error(s)! Check the console for output解决方法 - NetSoft Eclipse自动拷贝SVN的.SVN目录到bin目录问题的解决 - NetSoft - 博客园 浅议DAS、NAS、SAN区别(转载)
IIS 问题
NetSoft · 2010-09-15 · via 博客园 - NetSoft

错误信息: 

World Wide Web Publishing Service 服务因下列错误而停止: 

World Wide Web Publishing Service 不是有效的 Win32 应用程序。 

====================

可能解决因素:

把IIS->网站->属性->服务->iis 5隔离方式运行。

错误信息: 

Service Unavailable

事件 ID: 2268 
来源:W3SVC-WP 
类别:无 
描述:
无法加载站点/服务的所有 ISAPI 筛选器。因此启动中止。

事件 ID: 2274 
来源:W3SVC-WP 
类别:无 
描述: 

由于配置问题,无法加载 ISAPI 筛选器 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.40607\aspnet_filter.dll'。当前配置只支持加载为 AMD64 处理器体系结构创建的映像。数据字段包含错误编号。要进一步了解此问题,包括如何解决此类处理器体系结构的不匹配错误,请访问 http://go.microsoft.com/fwlink/?LinkId=29349。 

===========

通常发生在64位服务器上,执行命令将IIS以兼容32位模式运行后发生。

iis降低为32位运行: 

cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1 

解决方法:

http://support.microsoft.com/kb/894435 

需要在cscript命令后,针对特定Framework版本执行aspnet_regiis.exe -i的命令。需要注意-i参数是注册所有网站。

事件 ID ( 1093 )的描述(在资源( ASP.NET 2.0.50727.0 )中)无法找到。本地计算机可能没有必要的注册信息或消息 DLL 文件来从远程计算机显示消息。您可能可以使用 /AUXSOURCE= 标识来检索词描述;查看帮助和支持以了解详细信息。下列信息是事件的一部分: 0x80070005.

Unable to get the private bytes memory limit for the W3WP process. The ASP.NET cache will be unable to limit its memory use, which may lead to a process restart. Error: 0x80070005 

解决方法:

1.查看当前IIS进程用户身份,是否已经加入到IIS_WPG组。

Unable to get the private bytes memory limit for the W3WP process (reloaded)

Sometimes they come back, as my favorite writer says… This is the case of this error message I already wrote about a couple of years ago; anyway this time the customer before calling CSS for support had already tried the suggestions on my previous post, unfortunately without luck. The customer has tried:

  • aspnet_regiis -ga “Network Service”
  • cscript metaacl.vbs IIS://Localhost/W3SVC/AppPools IIS_WPG RE
  • Assured the account running Application Pool (NETWORK SERVICE) is part of the IIS_WPG group

The difference this time is that the application’s files are hosted on a centralized network share; for this particular scenario, also the account used in the “Connect As…” dialog in IIS Manager must be part of the IIS_WPG group:

Network Directory Security Credentials 

2.如果组内已经加入,但是还报错.

PROBLEM DESCRIPTION 
=================== 
I can run ASP.NET applications on the server, however I have noticed that when I do there is an asp error entry in the event log: "Unable to get the private bytes memory limit for the W3WP process. The ASP.NET cache will be unable to limit its memory use, which may lead to a process restart. Error 0x80070005".

ENVIRONMENT 
=========== 
- Windows Server 2003 
- .NET Framework 1.1

SUMMARY of TROUBLESHOOTING 
========================== 
This error is caused by a known issue with insufficient permissions in your IIS metabase. The metabase ACL's on the target server did not include the IIS_WPG group on the following two nodes of the metabase (IIS_WPG is in both ACL's on a clean install): 
- W3SVC/AppPools 
- W3SVC/Filters

You can download the MetaACL utility from http://support.microsoft.com/?id=267904. After you have installed the program, open a command prompt and navigate to the directory where you installed it. Then type the following:

- cscript metaacl.vbs IIS://Localhost/W3SVC/AppPools IIS_WPG RE 
- cscript metaacl.vbs IIS://Localhost/W3SVC/Filters IIS_WPG RE

Warning:  
The path is case sensitive - type exactly as above; after you run this command restart the IIS services and see if this corrects the problem.

 以上内容引用:

http://blogs.msdn.com/b/carloc/archive/2006/09/20/unable-to-get-the-private-bytes-memory-limit-for-w3wp-exe-process.aspx 

http://blogs.msdn.com/b/carloc/archive/2009/01/27/unable-to-get-the-private-bytes-memory-limit-for-the-w3wp-process-reloaded.aspx

3.问题依然存在,并且是使用过NewSID.exe的用户,查看以下内容

Problem

“Unable to get the private bytes memory limit for the W3WP process. The ASP.NET cache will be unable to limit its memory use, which may lead to a process restart. Error: 0x80070005”

Solution

In order to develop with SharePoint I use Virtual PC or Virtual Server 2005 images. Installing Windows Server 2003 takes about an hour and because of that I copy the images and change the SID using NewSID.exe. After that I get the error and using Google I found the solution at Joe unfiltered:

“I had created this VPC by copying the virtual hard disk from another VPC and running NewSID on it. I was under the impression that this fixed any issues regarding SIDs from the old machine conflicting with SIDs on the new one. Not quite, it turns out. The IIS_WPG group from the old box is on the ACL of the app pools in the metabase, not IIS_WPG of the new box. Use metaacl.vbs (download from MS) to check.”

Use the command:

MetaAcl.vbs "IIS://localhost/W3SVC/AppPools"

One of the entries will be an SID, not a user/group name. This is the IIS_WPG from the old box. To fix this, add the IIS_WPG group of the new box to the ACL in question using the command:

MetaAcl.vbs "IIS://localhost/W3SVC/AppPools" IIS_WPG U

So if your working with WSS 3 or MOSS 2007 and you use virtualization you should apply the fix.

Thanks to Joe!

事件日志如下: 
======================== 
事件类型:    错误 
事件来源:    ASP.NET 2.0.50727.0 
事件种类:    无 
事件 ID:    1093 
日期:        2009-8-17 
事件:        11:09:28 
用户:        N/A 
计算机:    V-AUDIKMWEB-T 
描述: 
无法获取 W3WP 进程的专用字节内存限制。 ASP.NET 缓存将无法限制其内存使用,这可能会导致 进程重新启动。错误: 0×80070005 有关更多信息,请参阅在 http://go.microsoft.com/fwlink/events.asp 的帮助和支持中心。 
======================== 
原因: 
这是一个已知的由于IIS metabase权限不足导致的错误. 
目的服务器的IIS metabase的ACL在下面两个节点没有包含IIS_WPG组. 
- W3SVC/AppPools 
- W3SVC/Filters 
解决办法: 
下载 MetaACL utility (http://support.microsoft.com/?id=267904). 安装后, 打开命令行并切换当前目录到MetaACL utility 安装目录, 运行: 
- cscript metaacl.vbs IIS://Localhost/W3SVC/AppPools IIS_WPG RE 
- cscript metaacl.vbs IIS://Localhost/W3SVC/Filters IIS_WPG RE 
注意:  
命令中路径是大小写敏感的(最好Copy&Paste), 运行命令以后重启IIS服务. 
原文出处: http://blogs.msdn.com/carloc/archive/2006/09/20/unable-to-get-the-private-bytes-memory-limit-for-w3wp-exe-process.aspx 

引用:

http://andreasglaser.net/post/2008/07/27/ASPNET-and-EventID-1093.aspx

http://support.microsoft.com/kb/267904/

http://topic.csdn.net/u/20091021/23/814cbe75-2b5a-4f1d-8fc7-4a5969aaa1d1.html