Collabnet SVN 日志文件,有吗?

发布于 2024-07-13 09:53:08 字数 134 浏览 8 评论 0原文

我的 svn 服务器表现得很奇怪。 我们在 Windows 计算机上使用 Collabnet svn 二进制文件。

有谁知道服务器是否有日志文件,我可以检查以找出是什么锁定了我的服务器(大型提交挂起)?

谢谢。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

樱桃奶球 2024-07-20 09:53:08

如果您使用 mod_dav_svn,SVN 日志消息将位于 Apache 日志中。 如果您运行的是 svnserve 1.6 之前的版本,请引用邮件列表发布:

svnserve 没有任何日志记录功能。

从版本 1.6 开始,svnserve 可以写入 日志文件

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

长梦不多时 2024-07-20 09:53:08

$ svnserve --版本
svnserve,版本 1.6.12 (r955767)

使用 --log-file=/var/log/svnserve.log 启动守护进程
(例如)

它不记录身份验证,但您可以知道访问了哪些存储库以及用户发出了哪些命令。

$ 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.

对不⑦ 2024-07-20 09:53:08

将以下行添加到 Apache subversion.conf

CustomLog logs/svn_logfile "%t %u@%h %>s repo:%{SVN-REPOS-NAME}e %{SVN-ACTION}e (%B Bytes in %T Sec)" env=SVN-ACTION

示例输出:

[07/Apr/2015:09:54:40 -0500] [email protected] 200 repo:java commit r24 (758 Bytes in 2 Sec)

Add below line to Apache subversion.conf:

CustomLog logs/svn_logfile "%t %u@%h %>s repo:%{SVN-REPOS-NAME}e %{SVN-ACTION}e (%B Bytes in %T Sec)" env=SVN-ACTION

Example output:

[07/Apr/2015:09:54:40 -0500] [email protected] 200 repo:java commit r24 (758 Bytes in 2 Sec)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文