centos自定义服务并加入开机启动

前端之家收集整理的这篇文章主要介绍了centos自定义服务并加入开机启动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

/etc/init.d/ 加入 workerman 文件(自定义服务,其实就是一个bash脚本),注意不要 .sh 后缀; 内部的 start() 这个函数会开机启动,配合 chkconfig workerman on 使用,注意引用绝对路径命令。

###一、脚本内容

#!/bin/bash

#chkconfig: 2345 70 30
#description: workerman command   #关于脚本的简短描述
#processname: workerman

start() {
        cd /data/wwwroot/web/workman/http
        /usr/local/PHP/bin/PHP http.PHP start -d
}

stop(){
        cd /data/wwwroot/web/workman/http
        /usr/local/PHP/bin/PHP http.PHP stop
}

case "$1" in
        start)
                cd /data/wwwroot/web/workman/http
                /usr/local/PHP/bin/PHP http.PHP start -d
                echo "Starting WorkerMan..."
                ;;
        stop)
                cd /data/wwwroot/web/workman/http
                /usr/local/PHP/bin/PHP http.PHP stop
                echo "Shutting WorkerMan..."
                ;;
        restart)
                cd /data/wwwroot/web/workman/http
                /usr/local/PHP/bin/PHP http.PHP restart
                echo "Restart WorkerMan..."
                ;;
        reload)
                cd /data/wwwroot/web/workman/http
                /usr/local/PHP/bin/PHP http.PHP reload
                echo "Reload WorkerMan..."
                ;;
        *)
                echo "Usage: #0 {start|stop|restart}"
                ;;
esac

###二、然后加入系统服务并设置开机启动

chkconfig --add workerman 
chkconfig workerman on

###三、start和stop函数解释 开机会自动执行start()函数,关机执行stop函数

###四、使用方法 平时使用 service workerman start | stop | restart | reload

###五、其他自启动方法

  1. /etc/rc.local,在这个文件中最后加入命令即可
  2. vi ~/.bashrc 或 vi ~/.bash_profile
  3. 即第一种方法
原文链接:https://www.f2er.com/centos/381290.html

猜你在找的CentOS相关文章