Authorization failed exception occurs on client svn

Original text:  https://blog.csdn.net/big1989wmf/article/details/70144470

 

 

 It turned out that the process of svnserve on the server did not start.

Then, try again, and it works

 

After that, configure the 3 configuration files under svn_repositories/tellidea/conf

 

------------------------------------------------------------------------

The authorization failed exception occurs, which is related to the three configuration files of the server-side svn 

File 1: svnserve.conf: 
[general] 
anon-access=read 
auth-access=write 
password-db=passwd 
authz-db=authz 

File 2: passwd: 
[users] 
test=123456 

File 3: authz: 
​​[groups] 
[ /] 
test= rw 

is generally in the authz file, the user group or user permissions are not configured, 
just set [/] to represent all the resources in the root directory, 
if you want to limit the resources, you can add subdirectories.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324598338&siteId=291194637
Recommended