zoukankan      html  css  js  c++  java
  • SharePoint BlobCache 报 Access Denied

    今天突然发现微软Knowledge Base Article的ID号升级了, 从原来的六位变成七位了, 呵呵. 微软出KB文档还是挺快, 挺多的.

    错误信息

    ==========

    Access to the path 'DRIVE:\blobCache\#########2\' is denied.

    Call Stack

    ==========

    System.UnauthorizedAccessException: Access to the path 'DRIVE:\blobCache\#########2\' is denied.
    at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
    at System.IO.Directory.InternalCreateDirectory(String fullPath, String path, DirectorySecurity dirSecurity)
    at System.IO.Directory.CreateDirectory(String path, DirectorySecurity directorySecurity)
    at Microsoft.SharePoint.Publishing.BlobCache.CreateDirectory(String directoryName)
    at Microsoft.SharePoint.Publishing.BlobCache.WriteIndex(Boolean tokensOnly)
    at Microsoft.SharePoint.Publishing.BlobCache.WriteIndex()
    at Microsoft.SharePoint.Publishing.BlobCache.<>c__DisplayClass14.<>c__DisplayClass17.<FetchItemFromWss>b__11()
    at Microsoft.Office.Server.Diagnostics.FirstChanceHandler.ExceptionFilter(Boolean fRethrowException, TryBlock tryBlock, FilterBlock filter, CatchBlock catchBlock, FinallyBlock finallyBlock)

    An error occured in the blob cache. The exception message was 'Access to the path 'DRIVE:\blobCache\#########2\' is denied.'.

    解决方案

    ==========

    1. Use a different root blobcache folder for each application.

    To work around this issue you can specify a different folder when configuring blob caching for each web application in the web.config.

    <BlobCache location="DRIVE:\blobCache" path="\.(gif|jpg|png|css|js)$" maxSize="10" max-age="86400" enabled="True"/>

    If you set the BlobCache locations to the following you should avoid this problem:
             Web Application Location
             First   DRIVE:\blobCache
             Second   DRIVE:\blobCachetwo
             Third   DRIVE:\blobCachethree

    2. Manually give <LOCALMACHINE>\WSS_WPG full control to DRIVE:\BlobCache.

    3. Use the same app pool account for any applications you plan to enable blobcaching on.

    来源:

    Error: "Access to the path 'DRIVE:\blobCache\##########\' is denied." when using SharePoint webapps with different application pool identities

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

  • 相关阅读:
    UVALive 7752 Free Figurines (瞎搞)
    ifram的使用 左边是<a>链接 右边是对应网页嵌套的显示网页链接内容 和toggle的收放用法
    java.util.Collections.synchronizedSet()方法的使用
    hibernate的反向生成改懒加载的地方
    SSM的XML和WEB.XML的配置
    通过System获取java环境变量的路径
    Java:对象的强、软、弱和虚引用的区别
    Struts2方法调用的三种方式(有新的!调用方法的说明)
    静态代理,动态代理,Cglib代理详解
    spring自定义注解拦截器的配置
  • 原文地址:https://www.cnblogs.com/awpatp/p/1683261.html
Copyright © 2011-2022 走看看