1.创建执行脚本svn.sh(/root路径下),其内容很简单,如下:
#!/bin/bash
svnserve -d --listen-port 8080 -r /home/svnroot/repository(svn资源库路径)
2.添加可执行权限
命令行运行
#chmod ug+x /root/svn.sh
3.添加自动运行
打开(vi或gedit)
/etc/init.d/rc.d/rc.local
在最后添加一行内容如下:
/root/svn.sh
保存退出。
4.检查
重启服务器,使用 ps -ef 看看svn进程是否启动了。
原文链接:http://blog.chinaunix.net/space.php?uid=725717&do=blog&id=2060377