CentOS配置SVN

来源:互联网 发布:数据库字符串截断 编辑:程序博客网 时间:2024/04/28 04:23

查询svn安装目录

rpm -ql subversion

svn重启命令

// 启动,{/srv/svn/repository}为版本库的根目录svnserve -d -r /srv/svn/repository// 关闭所有killall svnserve

查看svn进程

ps aux|grep svnroot       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中添加
[/]
* =

0 0