Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slow-is-fast/85f8322afc6b067d66e848a1f193a3dd to your computer and use it in GitHub Desktop.
Save slow-is-fast/85f8322afc6b067d66e848a1f193a3dd to your computer and use it in GitHub Desktop.
svnserve E17001 处理
svn客户端 authorization failed
近来在ubuntu上安装svn时发生了个错误,在客户端check时总是提示authorization failed
后来终于找到了解决的方法:
我把我的想关联的文件列出来:
svnserve.conf:
[general]
anon-access = none
auth-access = write,read
password-db = passwd
authz-db = authz
passwd:
[users]
xuzm = xuezm%@
authz:
[groups]
g_LG = xuezm
#[/]
#* = rw
[/]
@g_LG = rw
出现authorization failed异常,一般都是authz文件里,用户组或者用户权限没有配置好,只要设置[/]就可以,代表根目录下所有的资源,如果要限定资源,可以加上子目录即可。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment