把ngnix注冊為linux服務 將Nginx設置為linux下的服務


一、創建服務腳本

vim /etc/init.d/nginx

腳本內容如下

#! /bin/sh # chkconfig: - 85 15

PATH=/web/server/nginx/sbin DESC="nginx daemon" NAME=nginx DAEMON=/web/server/nginx/sbin/$NAME CONFIGFILE=/web/server/nginx/conf/$NAME.conf PIDFILE=/web/server/nginx/logs/$NAME.pid SCRIPTNAME=/etc/init.d/$NAME set -e [ -x "$DAEMON" ] || exit 0 do_start() { $DAEMON -c $CONFIGFILE || echo -n "nginx already running" } do_stop() { $DAEMON -s stop || echo -n "nginx not running" } do_reload() { $DAEMON -s reload || echo -n "nginx can't reload" } case "$1" in start)
echo -n "Starting $DESC: $NAME" do_start echo "."
;; stop)
echo -n "Stopping $DESC: $NAME" do_stop echo "."
;; reload|graceful)
echo -n "Reloading $DESC configuration..." do_reload echo "."
;; restart)
echo -n "Restarting $DESC: $NAME" do_stop do_start echo "."
;; *)
echo "Usage: $SCRIPTNAME {start|stop|reload|restart}" >&2
exit 3
;; esac exit 0

二、添加服務

chkconfig --add nginx

 

三、測試

service nginx start
service nginx stop
service nginx restart
service nginx reload

 

問題解決! 

 

====================我是華麗的分割線==========================

 

如果執行不成功, 可以給腳本添加執行權限

 

chmod a+x /etc/init.d/nginx 

 

還可以添加開機自啟動

chkconfig nginx on

 

 

 

參考資料: https://blog.csdn.net/Qlong_dd/article/details/45342551  

               https://blog.csdn.net/zbw18297786698/article/details/52884671

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM