首页 > 其他 > 详细

CentOS下SVN服务的启动与关闭

时间:2015-04-30 16:16:53      阅读:104      评论:0      收藏:0      [点我收藏+]

CentOS下SVN服务的启动与关闭

操作系统:CentOS 6.5
SVN版本:1.8.11

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

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

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

# ps aux | grep svn
root     64434  0.0  0.0 181584  1120 ?        Ss   02:01   0:00 svnserve -d -r /home/svn
root     64481  0.0  0.0 103256   848 pts/1    S+   02:03   0:00 grep svn

使用Kill命令杀死进程
kill -s 9 64434

64434为进程ID

CentOS下SVN服务的启动与关闭

原文:http://blog.csdn.net/testcs_dn/article/details/45394521

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!