标签:The ofo chkconfig restart 版本 自启动脚本 ase zlib stat
??安装所需环境开机自启动脚本
vim /etc/init.d/nginx
#!/bin/bash
PROG="/usr/local/nginx/sbin/nginx"
PIDF="/usr/local/nginx/logs/nginx.pid"
case "$1" in
? ? ? ? start)
? ? ? ? $PROG
? ? ? ? ;;
? ? ? ? stop)
? ? ? ? kill -3 $(cat $PIDF)
? ? ? ? ;;
? ? ? ? restart)
? ? ? ? $0 stop &> /dev/null
? ? ? ? if [ $? -ne 0 ] ; then continue ; fi
? ? ? ? $0 start
? ? ? ? ;;
? ? ? ? reload)
? ? ? ? kill -1 $(cat $PIDF)
? ? ? ? ;;
? ? ? ? *)
? ? ? ? echo "Userage: $0 { start | stop | restart | reload }"
? ? ? ? exit 1
esac
exit 0
chmod a+x /etc/init.d/nginx
chkconfig --add /etc/init.d/nginx
service nginx start
chkconfig nginx on
标签:The ofo chkconfig restart 版本 自启动脚本 ase zlib stat
原文地址:https://blog.51cto.com/13293070/2430947