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

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

经常有新手配置基于svnserve的subversion服务器后,

在客户端访问subversion版本库时出现这个错误:


svnserve.conf:12: Option expected


为什么会出现这个错误呢,就是因为subversion读取配置文件svnserve.conf时,无法识别有前置空格的配置文件,如

### This file controls the configuration of the svnserve daemon, if you

### use it to allow access to this repository. (If you only allow

### access through http: and/or file: URLs, then this file is

### irrelevant.)


### Visit http://subversion.tigris.org/ for more information.


[general]

### These options control access to the repository for unauthenticated

### and authenticated users. Valid values are "write", "read",

### and "none". The sample settings below are the defaults.

anon-access = read

auth-access = write


像上面的配置文件中,anon-access是顶行的,没问题,而auth-access就存在前置空格,会导致这个错误。

要避免出现这个错误,应该在去掉这些行前的#时,也要顺手去掉前面的空格,这一点,在郑新星老早的文章就提到过。

     本文转自xyz_lmn51CTO博客,原文链接:http://blog.51cto.com/xyzlmn/817464,如需转载请自行联系原作者

你可能感兴趣的文章
【JavsScript】关于javascript的路线
查看>>
黑暗世界错误记录(待解决)
查看>>
uva311 - Packets(贪心)
查看>>
磁盘IO性能监控(Linux 和 Windows)
查看>>
奇怪吸引子---Arneodo
查看>>
JVM相关命题的博客整理及总结
查看>>
Linux NFS服务器的安装与配置
查看>>
opencv 1.0 与 2.0的库对应表
查看>>
A9逻辑编译问题
查看>>
HTML里面Textarea换行总结
查看>>
xorm的sql builder
查看>>
MongoDB查询转对象是出错Element '_id' does not match any field or property of class
查看>>
kafka基本概念
查看>>
条件变量的陷阱与思考
查看>>
循序渐进的敏捷-每日例会
查看>>
图片标注工具LabelImg使用教程
查看>>
VMware12.0下安装CentOS-6.9-x86_64-bin-DVD.iso
查看>>
Solr Facet 搜索时,facet.missing = true 的真正含义
查看>>
对于Ian的访谈,不少关于GAN的内容
查看>>
011 递归
查看>>