欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

詳解Centos7中Nginx開機自啟動的解決辦法

 更新時間:2017年03月01日 16:05:38   作者:DunYLin  
本篇文章主要介紹了詳解Centos7中Nginx開機自啟動的解決辦法,具有一定的參加價值,有興趣的可以了解一下。

關(guān)于在centos7中設(shè)置Nginx開機自啟動,我們可以通過編寫開機自啟動shell腳本來解決。

測試環(huán)境

操作系統(tǒng):centos7 64位 1611

Nginx版本: 1.11.10

本機Nginx安裝時的配置參數(shù)

./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

以下是腳本內(nèi)容

#!/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的相應(yīng)路徑,例如:  nginxd=/usr/local/nginx/sbin/nginx  nginx_config=/usr/local/nginx/conf/nginx.conf  nginx_pid=/usr/local/nginx/logs/nginx.pid  以上都是本測試機nginx的相應(yīng)路徑  還有nginx的pid默認(rèn)路徑是nginx安裝目錄的logs/nginx.pid里。

設(shè)置文件的訪問權(quán)限

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

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

這樣在控制臺就很容易的操作nginx了:查看Nginx當(dāng)前狀態(tài)、啟動Nginx、停止Nginx、重啟Nginx…

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

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

加入到rc.local文件中

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

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

注意

如果開機后發(fā)現(xiàn)自啟動腳本沒有執(zhí)行,你要去確認(rèn)一下rc.local這個文件的訪問權(quán)限是否是可執(zhí)行的,因為rc.local默認(rèn)是不可執(zhí)行的。

修改rc.local訪問權(quán)限,增加可執(zhí)行權(quán)限

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

現(xiàn)在重啟后,自啟動腳本就能正常執(zhí)行了。

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

[root@localhost]# ps aux | grep nginx

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論