#!/bin/bash # #chkconfig: - 85 15 #description: Nginx is a World Wide Web server. #processname: nginx nginx=/usr/local/nginx/sbin/nginx conf=/usr/local/nginx/conf/nginx.conf case $1 in start) echo -n "Starting Nginx" $nginx -c $conf echo " done" ;; stop) echo -n "Stopping Nginx" killall -9 nginx echo " done" ;; test) $nginx -t -c $conf ;; reload) echo -n "Reloading Nginx" ps auxww | grep nginx | grep master | awk '{print $2}' | xargs kill -HUP echo " done" ;; restart) $0 stop $0 start ;; show) ps -aux|grep nginx ;; *) echo -n "Usage: $0 {start|restart|reload|stop|test|show}" ;; esac 如果有启动用户,请创建好用户和组,在nginx配置文件中设定
nginx启动脚本
原创
©著作权归作者所有:来自51CTO博客作者寻静寻俭的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:gitlab的邮箱配置过程
下一篇:源码安装mongoDB
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章