码迷,mamicode.com
首页 > 其他好文 > 详细

配置nginx脚本开机自启动

时间:2017-04-22 17:31:38      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:nginx   chm   格式   $0   back   stop   chkconfig   oca   路径   

vi /etc/init.d/nginx

插入以下内容,修改红色字体自己安装路径

#!/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

###因为从windows复制过来文件格式不对,从dos格式转换成unix

dos2unix /etc/init.d/nginx 

 

#### 编辑脚本后修改脚本的权限

chmod 755 /etc/init.d/nginx

 

####编辑定时任务

vi /etc/rc.local最后一行加入/etc/init.d/nginx

 

重启电脑

配置nginx脚本开机自启动

标签:nginx   chm   格式   $0   back   stop   chkconfig   oca   路径   

原文地址:http://www.cnblogs.com/Peter-Bin/p/6748274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!