博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
svnserve.conf:12: Option expected的问题解决方法
阅读量:5824 次
发布时间:2019-06-18

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

hot3.png

刚配置基于svnserve的svn服务器后,在客户端访问svn时出现这个错误:

svnserve.conf:12: Option expected
出现这个问题的原因是svn读取配置文件svnserve.conf时,无法识别有前置空格的配置文件,如

### The authz-db option controls the location of the authorization### rules for path-based access control.  Unless you specify a path### starting with a /, the file's location is relative to the the### directory containing this file.  If you don't specify an### authz-db, no path-based access control is done.### Uncomment the line below to use the default authorization file. authz-db = authz### This option specifies the authentication realm of the repository.### If two repositories have the same authentication realm, they should### have the same password database, and vice versa.  The default realm### is repository's uuid.

像上面的配置文件中,

 authz-db = authz

是顶行的,没问题,而authz-db = authz就存在前置空格,会导致这个错误。

要避免出现这个错误,应该在去掉这些行前的#时,也要顺手去掉前面的空格。

转载于:https://my.oschina.net/zchuanzhao/blog/514318

你可能感兴趣的文章
linux svn安装和配置
查看>>
SSH中调用另一action的方法(chain,redirect)
查看>>
数据库基础
查看>>
表格排序
查看>>
关于Android四大组件的学习总结
查看>>
java只能的round,ceil,floor方法的使用
查看>>
由于无法创建应用程序域,因此未能执行请求。错误: 0x80070002 系统找不到指定的文件...
查看>>
新开的博客,为自己祝贺一下
查看>>
【CQOI2011】放棋子
查看>>
采用JXL包进行EXCEL数据写入操作
查看>>
一周总结
查看>>
将txt文件转化为json进行操作
查看>>
线性表4 - 数据结构和算法09
查看>>
C语言数据类型char
查看>>
Online Patching--EBS R12.2最大的改进
查看>>
Binary Search Tree Iterator leetcode
查看>>
uva-317-找规律
查看>>
Event事件的兼容性(转)
查看>>
我的2014-相对奢侈的生活
查看>>
zoj 2412 dfs 求连通分量的个数
查看>>