Project

General

Profile

Actions

Error parsing svn output » History » Revision 7

« Previous | Revision 7/13 (diff) | Next »
Toshi MARUYAMA, 2012-10-17 12:40


Error parsing svn output

If after adding a repository you get an error "The entry or revision was not found in the repository" on the Repository tab, check in your log folder (e.g. /var/log/redmine/default) for production.log.

If you find this error in production.log there's probably an error when the redmine user runs the svn command:

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

(Redmine still tries to parse the output of the svn command as XML, but errors aren't formatted as XML, thus the parse error.)

To troubleshoot try running the command as the redmine user to see what the error is, for example:

sudo -u www-data svn list --xml 'https://svn.server.address/reponame'@HEAD

(You may have to add "www-data ALL=(ALL) NOPASSWD:ALL" to /etc/sudoers)

Now resolve the error so that you get only clean xml from the command every time.

If you get prompted to accept the server's certificate every time you need to give the redmine user a directory to store svn configuration in. Create a directory somewhere and make sure the redmine user is owner, for example:

sudo mkdir /usr/share/redmine/svn

sudo chown www-data:www-data /usr/share/redmine/svn

On Redmine 1.1.x or lesser,
open REDMINE_ROOT/lib/redmine/scm/adapters/subversion_adapter.rb and go to line 27
source:tags/1.1.3/lib/redmine/scm/adapters/subversion_adapter.rb#L27
and change:

SVN_BIN = "svn"

to, for example:

SVN_BIN = "svn --config-dir /usr/share/redmine/svn"

Now you should be able to permanently accept the certificate.

TODO:
On Redmine 1.2 or greater, this line changed.
source:tags/1.2.3/lib/redmine/scm/adapters/subversion_adapter.rb#L35

"SVN: Connection closed unexpectedly" when using SVN with SSH

When you execute

sudo -u www-data svn list --xml 'svn+ssh://svn.server.address/reponame'@HEAD

and receive the error "SVN: Connection closed unexpectedly", you may enable the shell for the user www-data on the machine, hosting the svn repository.
Simply edit /etc/passwd and change the entry for the respective user so it ends with /bin/bash instead of /bin/false or /sbin/nologin.
This should solve the problem.

Source(s):
http://www.redmine.org/boards/2/topics/11896
http://www.thinkplexx.com/learn/howto/scm/svn/fix-permanent-error-validating-server-certificate-problem-with-subversion

Updated by Toshi MARUYAMA over 11 years ago · 7 revisions