linux下svn服务开机自启动
程序员文章站
2022-06-04 19:21:49
...
[i][b]本文为firedragonpzy原创,转载务必在明显处注明:
转载自【Softeware MyZone】原文链接: http://www.firedragonpzy.com.cn/index.php/archives/281[/b][/i]
1 在/etc/rc.d/init.d/下建立svnserved文档
2 copy到svnserved文档下
4 更改脚本为可执行属性,chmod 557 /etc/rc.d/init.d/svnserved
5 将svnserved脚本设置为系统服务,[url=http://firedragonpzy.iteye.com/blog/1409595]chkconfig[/url] --add svnserved, 重启系统,ok!
转载自【Softeware MyZone】原文链接: http://www.firedragonpzy.com.cn/index.php/archives/281[/b][/i]
1 在/etc/rc.d/init.d/下建立svnserved文档
2 copy到svnserved文档下
svnserve -d -r /xxx/xxx/xxx
case "$1" in
start)
echo "starting svnserve..."
svnserve -d -r /xxx/xxx/xxx --listen-host xxx.xxx.xxx.xxx
echo "finished"
;;
stop)
echo "stoping svnserve"
killall svnserve
echo "finished"
;;
restart)
$0 stop
$0 start
;;
*)
exit
esac
4 更改脚本为可执行属性,chmod 557 /etc/rc.d/init.d/svnserved
5 将svnserved脚本设置为系统服务,[url=http://firedragonpzy.iteye.com/blog/1409595]chkconfig[/url] --add svnserved, 重启系统,ok!
上一篇: pushgateway
下一篇: Linux 安装subversion