51Testing软件测试论坛

标题: CentOS开机启动subversion [打印本页]

作者: Mario洁    时间: 2019-1-25 15:19
标题: CentOS开机启动subversion
建立自启动脚本:
  1. vim /etc/init.d/subversion
复制代码
输入如下内容:
  1. #!/bin/bash
  2. #
  3. # subversion startup script for the server
  4. #
  5. # chkconfig: 2345 90 10
  6. # description: start the subversion
  7. #
  8. # Source function library
  9. . /etc/rc.d/init.d/functions

  10. #脚本名称
  11. prog=subversion

  12. #redis安装目录
  13. SVN_HOME=/opt/subversion
  14. export SVN_HOME

  15. case "$1" in
  16.     start)
  17.     echo "Starting subversion..."
  18.     $SVN_HOME/ctlscript.sh start
  19.     ;;


  20. stop)
  21.     echo "Stopping subversion..."
  22.     $SVN_HOME/ctlscript.sh stop
  23.     ;;


  24. restart)
  25.     echo "Restarting subversion..."
  26.     $SVN_HOME/ctlscript.sh restart
  27.     ;;


  28. *)
  29.     echo "Usage: $prog {start|stop|restart}"
  30.     ;;
  31. esac
  32. exit 0
复制代码
修改文件为可运行文件:
  1. chmod a+x subversion
复制代码
查看subversion开机启动情况:
  1. chkconfig --list
复制代码
如没有,则添加到系统启动队列中:
  1. chkconfig --add subversion
复制代码

重新检查subversion开机启动情况,若成功,则应显示如下内容:

  1. subversion 0:off 1:off 2:on 3:on 4:on 5:on 6:off
复制代码

使用下列命令对subversion进行重启、停止、启动:

  1. service subversion restart/stop/start
复制代码







欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2