a.啟動SVN
svnserve -d -r /A/B/svn/
其中 -d 表示守護進程, -r 表示在後台執行
/A/B/svn/ 為svn的安裝目錄
b.關閉SVN
這裡采取linux殺死進程的方式處理的
ps -ef|grep svnserve
root 4967 1 0 Aug23 ? 00:00:00 svnserve -d -r repository/
這裡 kill -9 4967殺死進程, 此4967為進程號
http://xxxxxx/Linuxjc/1151841.html TechArticle