centos7编写自启动脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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编写自启动脚本的主要内容,如果未能解决你的问题,请参考以下文章

    nginx启动脚本编写及设置开机自启动

    CENTOS7开机自启动脚本

    CentOS7 设置开机自启动脚本

    CentOS7添加自定义系统服务

    [CentOS7]redis设置开机启动,设置密码

    Redis 在Centos7下配置开机自启动