启动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