1.停止svn服务器端:
[[email protected] www]# ps -ef|grep svn
root 21698 1 0 09:55 ? 00:00:00 svnserve -d -r /www/svn/
root 21701 21457 0 09:55 pts/0 00:00:00 grep svn
kill -9 21698
或者是直接使用 killall svnserve
2.启动svn服务
svnserve -d -r /www/svn/
-d指后台运行,-r指要启动的svn数据仓库
3.要把/svn迁移到/www/svn的方法:
a.先停止svn服务:killall svnserve
b. 拷贝svn目录:cp -R /svn /www/svn
c.修改配置文件:把svn目录下的项目对应的conf目录下的svnserve.conf修改一下对应的账号和密码的路径。
d.启动svn服务: svnserve -d -r /www/svn/
时间: 2024-11-01 04:19:34