博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
webdav不识别软链接?解决办法?
阅读量:5129 次
发布时间:2019-06-13

本文共 937 字,大约阅读时间需要 3 分钟。

webdav不识别软链接?解决办法?


在使用webdav实现公网存储共享的时候,发现webdav并不支持软链接的共享,如下源代码可以100%确定这个问题

/* ### for now, only process regular files (e.g. skip symlinks) */if (S_ISREG(fsctx->info1.finfo.st_mode)) {

然而实验室平台的存储目录都是使用软链接组织在一起的,这个问题将导致公网上挂载存储目录的时候看不见一些很重要的目录。

(使用apache2的mod_dav模块实现)

遂Google一番,得到两个结论,如下:

  1. 为什么webdav社区决定不支持软链接的共享?

    社区给出的官方解释如下:mod_dav does not display symbolic links and ignores them when found. Symbolic links are not defined in RFC 2518. Note that the repository or in this case the file system should be private to mod_dav and since mod_dav cannot create symbolic links you should not have any symbolic links unless you created them manually or with another program. If you are manipulating the repository manually while mod_dav is running be careful as you are circumventing mod_dav's file locks and could potentially cause problems.

  2. 解决办法?

    有人给mod_dav打了一个支持软链的补丁,
    本人未进行测试,是否能解决有待确定。

转载于:https://www.cnblogs.com/JaSonS-toy/p/4971684.html

你可能感兴趣的文章
http和https的区别
查看>>
Hbuild在线云ios打包失败,提示BuildConfigure Failed 31013 App Store 图标 未找到 解决方法...
查看>>
找到树中指定id的所有父节点
查看>>
今天新开通了博客
查看>>
AS3优化性能笔记二
查看>>
ElasticSearch(站内搜索)
查看>>
4----COM:a Generative Model for group recommendation(组推荐的一种生成模型)
查看>>
UVA 11137 - Ingenuous Cubrency
查看>>
js阻止事件冒泡的两种方法
查看>>
Java异常抛出
查看>>
[SQL Server 系] T-SQL数据库的创建与修改
查看>>
74HC164应用
查看>>
变量声明和定义的关系
查看>>
Wpf 之Canvas介绍
查看>>
linux history
查看>>
jQuery on(),live(),trigger()
查看>>
Python2.7 urlparse
查看>>
sencha touch在华为emotion ui 2.0自带浏览器中圆角溢出的bug
查看>>
【架构】Linux的架构(architecture)
查看>>
ASM 图解
查看>>