配置nginx脚本开机自启动

vi /etc/init.d/nginxnginx

插入如下内容,修改红色字体本身安装路径windows

#!/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}"
;;
esacbash

###由于从windows复制过来文件格式不对,从dos格式转换成unixide

dos2unix /etc/init.d/nginx 字体

 

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

chmod 755 /etc/init.d/nginxunix

 

####编辑定时任务rest

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

 

重启电脑ip

相关文章
相关标签/搜索