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

溫馨提示×

溫馨提示×

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

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

Centos7中Nginx開機自啟動問題怎么解決

發布時間:2022-04-16 17:48:12 來源:億速云 閱讀:323 作者:zzz 欄目:開發技術

這篇“Centos7中Nginx開機自啟動問題怎么解決”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Centos7中Nginx開機自啟動問題怎么解決”文章吧。

關于在centos7中設置nginx開機自啟動,我們可以通過編寫開機自啟動shell腳本來解決。

測試環境

操作系統:centos7 64位 1611

nginx版本: 1.11.10

本機nginx安裝時的配置參數

./configure \
--prefix=/usr/local/nginx \
--pid-path=/usr/local/nginx/logs/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi

編寫腳本

[root@localhost]# vim /etc/init.d/nginx

以下是腳本內容

#!/bin/bash
# nginx startup script for the nginx http server
# it is v.0.0.2 version.
# chkconfig: - 85 15
# description: nginx is a high-performance web and proxy server.
#       it has a lot of features, but it's not for everyone.
# processname: nginx
# pidfile: /usr/local/nginx/logs/nginx.pid
# config: /usr/local/nginx/conf/nginx.conf
nginxd=/usr/local/nginx/sbin/nginx
nginx_config=/usr/local/nginx/conf/nginx.conf
nginx_pid=/usr/local/nginx/logs/nginx.pid
retval=0
prog="nginx"
# source function library.
. /etc/rc.d/init.d/functions
# source networking configuration.
. /etc/sysconfig/network
# check that networking is up.
[ "${networking}" = "no" ] && exit 0
[ -x $nginxd ] || exit 0
# start nginx daemons functions.
start() {
if [ -e $nginx_pid ];then
  echo "nginx already running...."
  exit 1
fi
  echo -n $"starting $prog: "
  daemon $nginxd -c ${nginx_config}
  retval=$?
  echo
  [ $retval = 0 ] && touch /var/lock/subsys/nginx
  return $retval
}
# stop nginx daemons functions.
stop() {
    echo -n $"stopping $prog: "
    killproc $nginxd
    retval=$?
    echo
    [ $retval = 0 ] && rm -f /var/lock/subsys/nginx /usr/local/nginx/logs/nginx.pid
}
# reload nginx service functions.
reload() {
  echo -n $"reloading $prog: "
  #kill -hup `cat ${nginx_pid}`
  killproc $nginxd -hup
  retval=$?
  echo
}
# see how we were called.
case "$1" in
start)
    start
    ;;
stop)
    stop
    ;;
reload)
    reload
    ;;
restart)
    stop
    start
    ;;
status)
    status $prog
    retval=$?
    ;;
*)
    echo $"usage: $prog {start|stop|restart|reload|status|help}"
    exit 1
esac
exit $retval
:wq 保存并退出

*對于shell腳本中的部分文件路徑請修改成你主機上nginx的相應路徑,例如:  nginxd=/usr/local/nginx/sbin/nginx  nginx_config=/usr/local/nginx/conf/nginx.conf  nginx_pid=/usr/local/nginx/logs/nginx.pid  以上都是本測試機nginx的相應路徑  還有nginx的pid默認路徑是nginx安裝目錄的logs/nginx.pid里。

設置文件的訪問權限

[root@localhost]# chmod a+x /etc/init.d/nginx

(a+x ==> all user can execute  所有用戶可執行)

這樣在控制臺就很容易的操作nginx了:查看nginx當前狀態、啟動nginx、停止nginx、重啟nginx…

usage : nginx {start|stop|restart|reload|status|help}

如果修改了nginx的配置文件nginx.conf,也可以使用上面的命令重新加載新的配置文件并運行,可以將此命令加入到rc.local文件中,這樣開機的時候nginx就默認啟動了

加入到rc.local文件中

[root@localhost]# vi /etc/rc.local

加入一行  /etc/init.d/nginx start    保存并退出,下次重啟會生效。

注意

如果開機后發現自啟動腳本沒有執行,你要去確認一下rc.local這個文件的訪問權限是否是可執行的,因為rc.local默認是不可執行的。

修改rc.local訪問權限,增加可執行權限

[root@localhost]# chmod +x /etc/rc.d/rc.local

現在重啟后,自啟動腳本就能正常執行了。

可以通過以下命令來查看nginx進行的運行情況

[root@localhost]# ps aux | grep nginx

以上就是關于“Centos7中Nginx開機自啟動問題怎么解決”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

丹凤县| 尼勒克县| 香港| 开化县| 林州市| 阿鲁科尔沁旗| 姚安县| 浦东新区| 柳江县| 西城区| 渭源县| 武宣县| 喀喇沁旗| 蓬溪县| 车致| 泽州县| 凤城市| 丹阳市| 汉川市| 灌阳县| 平南县| 贺州市| 阳山县| 桦川县| 遂川县| 阳谷县| 义乌市| 宣汉县| 潮州市| 望江县| 娄烦县| 延长县| 宁远县| 阿拉善右旗| 建湖县| 商都县| 平罗县| 秭归县| 崇礼县| 美姑县| 大埔区|