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

推荐订阅源

D
DataBreaches.Net
V
Vulnerabilities – Threatpost
C
CERT Recently Published Vulnerability Notes
Google DeepMind News
Google DeepMind News
GbyAI
GbyAI
Y
Y Combinator Blog
T
Threatpost
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Project Zero
Project Zero
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
MyScale Blog
MyScale Blog
Security Latest
Security Latest
T
Threat Research - Cisco Blogs
量子位
I
Intezer
Simon Willison's Weblog
Simon Willison's Weblog
C
Cybersecurity and Infrastructure Security Agency CISA
L
Lohrmann on Cybersecurity
L
LINUX DO - 最新话题
The Register - Security
The Register - Security
T
Tailwind CSS Blog
爱范儿
爱范儿
Google DeepMind News
Google DeepMind News
T
Troy Hunt's Blog
Stack Overflow Blog
Stack Overflow Blog
Cloudbric
Cloudbric
S
Secure Thoughts
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
L
LangChain Blog
Recorded Future
Recorded Future
小众软件
小众软件
www.infosecurity-magazine.com
www.infosecurity-magazine.com
T
Tor Project blog
人人都是产品经理
人人都是产品经理
F
Full Disclosure
O
OpenAI News
Webroot Blog
Webroot Blog
A
Arctic Wolf
TaoSecurity Blog
TaoSecurity Blog
P
Privacy & Cybersecurity Law Blog
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
H
Heimdal Security Blog
B
Blog RSS Feed
Vercel News
Vercel News

博客园 - Brave Heart

a href="#"与 a href="javascript:void(0)" 的区别 使用 IntelliTrace 调试应用程序 Javascript实现页面跳转的问题 - Brave Heart - 博客园 估计堆的大小 怎样查看SQL Server数据表的数据页结构(转载) "服务器 '*********' 上的 MSDTC 不可用"错误的解决方法 Asp.Net在SqlServer中的图片存取技术 [转] SHTML 教程 自增字段的SQL语句解决方案 优化数据库的方法及SQL语句优化原则 DBA在系统设计、开发中的重要性 ADSI概览 .NET平台网站架构调优实践点滴 SQL SERVER 2005 DATABASE--公用表表达式(CTE) 学习.Net的经典网站(转载自CSDN技术中心) 操作Excel生成的mht代码 基本的xml操作类 实现Logo滑动 代码:确定两个日期之间的间隔 (Visual C#)
不能访问Temporary ASP.NET Files的问题
Brave Heart · 2011-03-08 · via 博客园 - Brave Heart

今天项目在发布到PROD上之后出现了一个“The current identity (Domain\****) does not have write access to 'C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET Files'

”问题,当时在Google搜索的时候,在国外的一个论坛,看到一个如下的回复:

This is caused when .Net 2.0 is installed before IIS is installed. It is a simple fix to register .Net 2.0 Service Extension in IIS. From a command prompt on the machine run: %Windir%\Microsoft.NET\FRAMEWORK\V2.0.50727\aspnet_regiis.exe -i

开始我也觉得可能是这个问题导致的,但是后面细细一想也不对,因为PROD上其他的Application都运行良好,唯独这个Application出了问题。

最后在PROD上实验了上面的方法,结果没有出乎我的意料,果然问题依旧。至此,我把重心放到了帐号上面提到了的帐号(Domain\****)上面,实际上我们一般在本地配置的时候,Application Pool的Account都是设置为系统管理员的帐号,所以一般都不会遇到这个问题,这个问题其实就是当前的Application运行的时候需要写ASP.NET临时文件夹,这个问题其实解决可能应该不难,但是这里引出了一个问题是,到底什么Application在运行的时候需要有对ASP.NET的修改权限呢?