刚学习svn,服务器端启动了,但是用Tortoise访问的时候报Error * Authorization failed
我的配置文件如下
authz### This file is an example authorization file for svnserve.
### Its format is identical to that of mod_authz_svn authorization
### files.
### As shown below each section defines authorizations for the path and
### (optional) repository specified by the section name.
### The authorizations follow. An authorization line can refer to a
### single user, to a group of users defined in a special [groups]
### section, or to anyone using the '*' wildcard.  Each definition can
### grant read ('r') access, read-write ('rw') access, or no access
### ('').[groups]
# harry_and_sally = harry,sally
mscp = wukj,shiyl,hansp,shenlg,dengdan,duliang# [/foo/bar]
# harry = rw
# * =
#[*/]
#wukj = rw
#shiyl = rw# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r
[mscp:/]
@mscp = rw

解决方案 »

  1.   

    你看看赋给cvs用户权限了没有
      

  2.   

    你的配置文件中没有配置用户权限
    # [repository:/baz/fuz]
    # @harry_and_sally = rw
    # * = r
    [mscp:/]
    @mscp = rw
    在后面加上
    [/]
    * = r
    superman = rw
    其中superman是你在passd中配置的用户名
      

  3.   

    我也遇到这样的问题,请问高手们是不是我用win7不能作为svn服务器使用哦