CentOS svn的启动、停止

启动SVN服务:
svnserve -d -r /home/svn

/home/svn 为版本库的根目录;

关闭SVN服务:
使用以下命令查找进程
ps aux | grep svn

如果打印

root      3422  0.0  0.0 183132  1204 ?        Ss   14:59   0:00 svnserve -d -r /home/svn
root      3742  0.0  0.0 103260   860 pts/0    R+   15:16   0:00 grep svn

则证明已开启svn,否则未开启

停止svn
使用Kill命令杀死进程
kill -s 9 3422

3422为进程ID

    原文作者:iOS_Xue
    原文地址: https://www.jianshu.com/p/69fe05dc4614
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞