中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CentOS6.3添加nginx系統服務的實例詳解

發布時間:2020-08-24 10:21:32 來源:腳本之家 閱讀:141 作者:神神的蝸牛 欄目:服務器

CentOS6.3添加nginx系統服務的實例詳解

前言:

今天虛擬機上配了下服務器整理了個這個 nginx 服務

要注意 - 短橫杠這個符號看看復制進去后有沒有亂碼,我之前就遇到這個問題,郁悶了好久才發現

提示:頂部的注釋不要去除否則無法注冊為系統服務,

關于:chkconfig: 2345 65 37

網上搜索總結了下意思是:

  • 2345 為啟動該服務的系統環境
  • 65   為加載的優先級別
  • 37   為關閉的優先級別

65,37 這兩個位置的數值不能相同,也不能和其它服務的數值沖突,這個我也沒遇到過此類問題,如果有發現問題請對應自己的配置修改下好了

新建文件:

# vi /etc/init.d/nginx 

輸入內容:

#!/bin/sh 
# Comments to support chkconfig on RedHat Linux 
# chkconfig: 2345 65 37 
# description: A nginx daemon. 
                         
set -e 
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin 
DESC="nginx daemon" 
NAME=nginx 
DAEMON=/usr/local/nginx/sbin/$NAME 
SCRIPTNAME=/etc/init.d/$NAME 
                         
# If the daemon file is not found, terminate the script. 
test -x $DAEMON || exit 0 
                         
d_test() { 
  $DAEMON -t 
} 
d_start() { 
  $DAEMON || echo -n " already running" 
} 
d_stop() { 
  $DAEMON -s quit || echo -n " not running" 
} 
d_reload() { 
  $DAEMON -s reload || echo -n " could not reload" 
} 
                         
case "$1" in 
  test) 
   d_test 
   echo "." 
   ;; 
  start) 
   echo -n "Starting $DESC: $NAME" 
   d_start 
   echo "." 
   ;; 
  stop) 
   echo -n "Stopping $DESC: $NAME" 
   d_stop 
   echo "." 
   ;; 
  reload) 
   echo -n "Reloading $DESC configuration..." 
   d_reload 
   echo "reloaded." 
   ;; 
  restart) 
   echo -n "Restarting $DESC: $NAME" 
   d_stop 
   # Sleep for two seconds before starting again, this should give the 
   # Nginx daemon some time to perform a graceful stop. 
   sleep 2 
   d_start 
   echo "." 
   ;; 
  *) 
   echo "Usage: $SCRIPTNAME {test|start|stop|restart|reload}" >&2 
   exit 3 
   ;; 
esac 
                         
exit $? 

注冊 nginx 服務:

chmod +x /etc/init.d/nginx 
chkconfig --add nginx 
chkconfig --level 2345 nginx on 
chkconfig --list nginx 

相關 nginx 命令:

檢測 nginx 配置

# service nginx test 

啟動

# service nginx start 

關閉

# service nginx stop 

重啟

# service nginx restart 

重載配置

# service nginx reload 

如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洱源县| 阜城县| 常州市| 隆尧县| 万山特区| 吉安县| 临朐县| 巨野县| 德州市| 资兴市| 嘉祥县| 抚顺县| 修武县| 连云港市| 霍林郭勒市| 潼南县| 基隆市| 光山县| 云龙县| 同仁县| 阜新市| 盐池县| 阿克陶县| 乌拉特后旗| 仁布县| 榆林市| 保定市| 大石桥市| 磐石市| 柳林县| 丹东市| 伽师县| 平舆县| 锡林郭勒盟| 武胜县| 永德县| 连州市| 浮梁县| 古浪县| 洪雅县| 富裕县|