在 /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
###五、其他自启动方法
原文链接:https://www.f2er.com/centos/381290.html