svnserve.conf:27: Option expected

在客户端访问subversion版本库时出现这个错误:
svnserve.conf:27 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就存在前置空格,会导致这个错误。
要避免出现这个错误,应该在去掉这些行前的#时,也要顺手去掉前面的空格

时间: 2024-12-23 05:51:27

svnserve.conf:27: Option expected的相关文章

【转】SVN添加文件时的错误处理:...\conf\svnserve.conf:12: Option expected

转载地址:http://www.linuxidc.com/Linux/2014-09/106683.htm 安装完SVN服务器,添加完用户权限后,准备将本地的项目add到服务器上时,报"C:\Documents and Settings\Subversion Repository\conf\svnserve.conf:12: Option expected ". 网上查找,需要做以下配置: svnserve.conf文件修改前: ----------------------------

svnserve.conf:12: Option expected的问题解决方法

刚配置基于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

svn eclipse /svnserve.conf:12: Option expected

常有新手配置基于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 ac

svnserve.conf: Option expected的问题解决方法

经常有新手配置基于svnserve的subversion服务器后,在客户端访问subversion版本库时出现这个错误:svnserve.conf:12: Option expected为什么会出现这个错误呢,就是因为subversion读取配置文件svnserve.conf时,无法识别有前置空格的配置文件 配置要顶格写

SVN svnserve.conf: Option expected 的解决方法 以及 Authorization failed 的解决方法

① 在 CentOS 6.5 上安装配置了 SVN,在本地 Checkout 的时候报错: 显示:/www/svnroot/webfile/conf/svnserve.conf:12: Option expected 原因是,在 vim svnserve.conf 时,配置语句的前段出现了空格,如 anon-access 没有顶格写,前面多了空格,就会出现这个报错. ② 在 tortoise SVN 客户端检出时输入帐密后,出现: 原因是 authz 文件中在分配权限之前没有指定权限路径,例如要

svn: E200002: line 19: Option expected

提交代码时报错: svn: E200002: error while parsing config file :/ home/..../svnserve.conf svn: E200002: line 19: Option expected 这是因为修改svnserve.conf时,打开注释时,配置的前面有空格,应该顶格写. 修改后即可.

svn installation

# yum install mod_dav_svn.x86_64 subversion-svn2cl.noarch===========================================================================================================================================================================svnserve.conf:12: Opti

SVN错误:Attempted to lock an already-locked dir

转自:http://www.blogjava.net/coderdream/archive/2008/05/27/203115.html 出现这个问题后使用“清理”功能,如果还不行,就直接到上一级目录,再执行“清理”,然后再“更新”. 有时候如果看到某个包里面的文件夹没有SVN的标志,直接用“Ctrl+Delete”手工删除,然后“清理”,最后“更新”或“提交”. 网络摘抄1: 错误信息 Malformed file    svn: E:\svn\repository\conf\svnserve

ubuntu搭建svn遇到的问题及解决办法

情况一. svn: /opt/svndata/repos/conf/svnserve.conf:12: Option expected 原因:svn不识别配置文件中 开头带空格的参数 权限配置: #分组:[groups]group_admin = wws,aaa,bbbgroup_user1 = sj,cccgroup_user2 = sy,dd,eeeegroup_user3 = lxtgroup_user4 = ss #设置对根(即SVN)目录下,所有版本库的访问权限[/]* = r #所有