码迷,mamicode.com
首页 > 其他好文 > 详细

centos7编写自启动脚本

时间:2018-05-21 12:24:37      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:centos7编写自启动脚本

  • 编写启动脚本:
    vim srvd
    #!/bin/bash
    function start()
    {
        #  启动命令
    }
    function stop()
    {
        #  停止命令
    }
    case "$1" in
    start)
    start
    ;;  
    stop)
    stop
    ;;  
    restart)
    stop
    start
    ;;
    *)
    echo "Usage : start | stop | restart"
    ;;
    esac
  • 加入系统启动文件夹:
    chmod  a+x  srvd
    cp  -arf  srvd  /etc/init.d/
  • 手动启动:
    systemctl  start  srvd
  • 设置开机自启动:
    chkconfig  --add  srvd
    chkconfig  srvd  on
  • centos7编写自启动脚本

    标签:centos7编写自启动脚本

    原文地址:http://blog.51cto.com/12173069/2118590

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    登录后才能评论!
    © 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
    迷上了代码!