Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Collabnet SVN Log files, are there any?

Tags:

svn

collabnet

My svn server is acting funky. We're using Collabnet svn binary on a Windows machine.

Does anyone know if the server has log files I can examine to find out what locks up my server (large commits hang)?

Thank you.

like image 854
srmark Avatar asked Feb 12 '09 20:02

srmark


2 Answers

If you're using mod_dav_svn, the SVN log messages will be within Apache logs. If you're running svnserve prior 1.6, quoth a mailing list posting:

svnserve does not have any logging capability.

since version 1.6 svnserve can write to a log file

like image 96
Rytmis Avatar answered Sep 30 '22 08:09

Rytmis


$ svnserve --version svnserve, version 1.6.12 (r955767)

Start your daemon using --log-file=/var/log/svnserve.log (for example)

It doesn't log authentication, but you can know what repo is accessed and what commands were issued by your users.

like image 42
Juanga Covas Avatar answered Sep 30 '22 08:09

Juanga Covas