微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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开机自启动的问题怎么解决”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程之家网站,小编将为大家输出更多高质量的实用文章

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐