zoukankan      html  css  js  c++  java
  • The current identity (NT AUTHORITY\NETWORK SERVICE) does not have write access [windows server 2003 | xp]

    The current identity (NT AUTHORITY\NETWORK SERVICE) does not have write access

         部署安装web程序时出现下面的错误,看了下是目录缺少权限的问题,其实只要按照要求一步就可以修复的,很多朋友不喜欢看错误提示,耽误了很多时间,下面给出具体的解决办法:

    错误如下:

    2003系统提示错误:

    The current identity (NT AUTHORITY\NETWORK SERVICE) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'.

    XP系统会出现如下错误(我是在XP系统下运行的,所以这个错误信心给的详细点):

    Server Error in '/' Application. 

    ________________________________________

    The current identity (530C3E52B37F453\ASPNET) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'. 

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

    Exception Details: System.Web.HttpException: The current identity (530C3E52B37F453\ASPNET) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'.

    Source Error: 

    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 

    Stack Trace: 

    [HttpException (0x80004005): The current identity (530C3E52B37F453\ASPNET) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'.]

       System.Web.HttpRuntime.SetUpCodegenDirectory(CompilationSection compilationSection) +3474123

       System.Web.HttpRuntime.HostingInit(HostingEnvironmentFlags hostingFlags) +226

    [HttpException (0x80004005): The current identity (530C3E52B37F453\ASPNET) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'.]

       System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +3426855

       System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +88

       System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +149

    ________________________________________

    Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42

    解决办法:

    如图:

    The current identity (NT AUTHORITYNETWORK SERVICE) does not have write access  - liwu1983522 -  の↑劫財→

    C:\WINDOWS\Microsoft.NET\缺少必要的权限,加users完全权限即可(找到这个目录,右键属性,安全选项,给user账号加入写权限或者完全权限) 或者 C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET这个目录,右键属性,安全选项,给 ASP.NET 帐号加入修改和写入权限

  • 相关阅读:
    经典问题之生产者-消费者问题——Lock实现
    【转】面试中常见的二叉树题目
    【转】ConcurrentHashMap之实现细节
    【转】java中关键字volatile的作用
    WeakReference 与 SoftReference 区别
    git学习笔记
    android项目笔记整理(3)
    android项目笔记整理(2)
    Android项目笔记整理(1)
    Android实习结束后的阶段性总结
  • 原文地址:https://www.cnblogs.com/mrtom/p/1999690.html
Copyright © 2011-2022 走看看