1

我已经在我的系统中配置了 svn 服务器,并为使用 SASL MD5 验证用户进行了以下配置。我在 svnserve.conf 中做了以下更改

 [general]
 anon-access = none
 auth-access = write
 password-db = passwd
 authz-db = authz
 realm = my_first_repository
 [SASL]
 use-sasl = true 
 min-encryption = 0
 max-encryption = 256 


 /usr/local/lib/sasl2/subversion.conf
 pwcheck_method: auxprop 
 auxprop_plugin: sasldb 
 sasldb_path: /etc/my_sasldb
 mech_list: DIGEST-MD5

我通过以下命令添加用户

 saslpasswd2 -c -f /etc/my_sasldb -u my_first_repository username

它要求输入密码并检查密码的正确性。但是一旦我使用以下命令输入用户名和密码

 svn list svn://localhost/path/to/repository/ --username

它显示以下警告

svn: Authentication error from server: SASL(-13): user not found: no secret in database

可能是什么原因?任何建议将不胜感激。

而且,

我在启动 svn 服务器时收到以下警告。我在 ubuntu 10.04 中配置服务器。而svn的版本是1.6.6。

 svnserve: /usr/local/lib/libsasl2.so.2: no version information available (required by svnserve)
 svnserve: /usr/local/lib/libsasl2.so.2: no version information available (required by /usr/lib/libsvn_ra_svn-1.so.1)
 svnserve: /usr/local/lib/libsasl2.so.2: no version information available (required by /usr/lib/libldap_r-2.4.so.2)
4

1 回答 1

0

在我将用户添加到 SASL 之后,我遇到了同样的 SASL 错误,直到我重新启动。

于 2010-10-24T09:26:35.697 回答