配置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

相關文章
相關標籤/搜索