1,启动SVN
sudo svnserve -d -r /home/data/svn/
其中 -d 表示守护进程, -r 表示在后台执行
/home/data/svn/  为svn的安装目录
2,关闭SVN
这里采取linux杀死进程的方式处理的
ps -ef|grep svnserve
root      4967     1  0 Aug23 ?        00:00:00 svnserve -d -r repository/ 
这里  kill -9 4967杀死进程, 此4967为进程号

相关文章:

  • 2021-09-29
  • 2021-12-09
  • 2021-10-18
  • 2022-12-23
  • 2022-12-23
  • 2021-11-12
猜你喜欢
  • 2022-02-23
  • 2022-12-23
  • 2021-08-23
  • 2022-12-23
  • 2021-09-19
  • 2021-08-30
相关资源
相似解决方案