查询svn安装目录
rpm -ql subversion
svn重启命令
// 启动,{/srv/svn/repository}为版本库的根目录
svnserve -d -r /srv/svn/repository
// 关闭所有
killall svnserve
查看svn进程
ps aux|grep svn
root 921 0.0 0.0 162184 912 ? Ss 10:54 0:00 svnserve -d -r /srv/svn/repository/
root 935 0.0 0.0 112648 964 pts/1 S+ 10:57 0:00 grep --color=auto svn
也可以使用Kill命令杀死进程
//112648是进程ID
kill -s 9 112648
遇到的问题
1、show log日志无法显示问题,解决方案:
1.编辑svnserve.conf,设置“anon-access=none”
2.在authz中添加
[/]
* =
本文介绍了如何查询Subversion(SVN)的安装目录,并提供了启动和关闭SVN服务的命令。此外,还详细说明了如何通过修改svnserve.conf文件解决showlog日志无法显示的问题。
918

被折叠的 条评论
为什么被折叠?



