- 查看svnserver 状态和pid
ps -aux | grep svn
root 2222 0.0 0.0 166300 916 ? Ss 15:23 0:00 svnserve -d -r /home/wwwroot/svn
root 5432 0.0 0.0 112640 968 pts/0 S+ 15:23 0:00 grep --color=auto svn
1
2
3
4
2
3
4
- 杀死进程
kill -9 2222
或
killall svnserver
1
2
3
4
5
6
2
3
4
5
6
- 重新启动(不需要包含svn资源库文件夹)
svnserve -d -r /home/wwwroot/svn
1
说明:资源库在 /home/wwwroot/svn 下
或者:
#使用9999端口启动svn服务
svnserve --listen-port 9999 -d -r /home/wwwroot/svn
-d 表示后台运行
-r 表示数据仓库目录
1
2
3
4
5
2
3
4
5
客户端检出
svn co svn://xxx.xxx.xxx.xxx/directory
1
注: 必须先到更新检出目录下(directory 为svn下的指定目录) 详细博客 (opens new window)