svn server运行和解决条目不可读问题 svn: E200001

问题产生场景 PhpStorm关联SVN之后,show history 的时候出现下面的错误 
Problems while loading file history: svn: E220001: Unreadable path encountered; access denied 错误信息截图

解决办法:

修改项目下的conf/svnserve.conf
[general]
### The anon-access and auth-access options control access to the
### repository for unauthenticated (a.k.a. anonymous) users and ### authenticated users, respectively.
### Valid values are "write", "read", and "none". 
### Setting the value to "none" prohibits both reading and writing;
### "read" allows read-only access, and "write" allows complete 
### read/write access to the repository.
### The sample settings below are the defaults and specify that anonymous
### users have read-only access to the repository, while authenticated
### users have read and write access to the repository.
**anon-access = none** 
auth-access = write 
### The password-db option controls the location of the password
### database file.  Unless you specify a path starting with a /,
### the file's location is relative to the directory containing

将anon-access = none后 重新启动一下 svnserver就解决了


killall svnserve

svnserve -d -r /var/svn/repos/ 



分享至
2018-09-28 发布 ┊ 2168 人浏览 ┊ 0 人评论 ┊ 来源:原创 ┊ 收藏
返回顶部