redmine问题笔记

1. Error parsing svn output: #<REXML::ParseException: No close tag for /lists/list>

建立版本库时,本地的svn库没有问题,而另一台服务器的svn库报上述错误

这个问题基本上是由于apache 用户www-data取svn的授权问题引起的

$ su www-data
$ svn co https://192.168.1.1:1234/svn/sandbox
Error validating server certificate for 'https://192.168.1.1:1234':
 - The certificate is not issued by a trusted authority. Use the
   fingerprint to validate the certificate manually!
 - The certificate hostname does not match.
Certificate information:
 - Hostname: XXXXXX
 - Valid: from Thu, 11 Apr 2013 01:14:33 GMT until Sun, 09 Apr 2023 01:14:33 GMT
 - Issuer: XXXXX
 - Fingerprint: 8f:3:bb:50:18:1f:97:a4:e5:5e:be:6c:de:95:85:f9:67
(R)eject or accept (t)emporarily? R

看到没有,没有permanent.

$su www-data

$vi .subversion

保证下面是这个样子:

#store-auth-creds = no

我的问题就解决了。

你可能感兴趣的:(redmine问题笔记)