当前位置:   article > 正文

CentOS 7 安装 Nginx_nginx版本兼容吗

nginx版本兼容吗

  Nginx 可以在大多数 Unix Linux OS 上编译运行,并有 Windows 移植版。 Nginx 的1.20.0稳定版已经于2021年4月20日发布,一般情况下,对于新建站点,建议使用最新稳定版作为生产版本,已有站点的升级急迫性不高。
  Nginx 是一个很强大的高性能Web和反向代理服务,它具有很多非常优越的特性:
在连接高并发的情况下,Nginx是Apache服务不错的替代品:能够支持高达 50,000 个并发连接数的响应
  Nginx作为负载均衡服务:Nginx 既可以在内部直接支持 Rails 和 PHP 程序对外进行服务,也可以支持作为 HTTP代理服务对外进行服务。

官网下载地址:http://nginx.org/en/download.html
当前安装包,一般选择稳定版本:nginx-1.20.2.tar.gz

安装相关依赖

yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
  • 1

开始编译安装

# 切换目录
cd /usr/local/src/

# 下载安装包
wget http://nginx.org/download/nginx-1.20.2.tar.gz

# 解压安装包
tar -zxvf nginx-1.20.2.tar.gz

# 进入解压后的源码包
cd nginx-1.20.2

# 预编译
# 默认安装目录 /usr/local/nginx
./configure --with-http_ssl_module #启用SSL模块

# 编译安装
make
make install
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

预编译参数:

  • –prefix=PATH 指定 nginx 的安装目录
  • –conf-path=PATH 指定 nginx.conf 配置文件路径
  • –user=NAME nginx 工作进程的用户
  • –with-pcre 开启 PCRE 正则表达式的支持
  • –with-http_ssl_module 启动 SSL 的支持
  • –with-http_stub_status_module 用于监控 Nginx 的状态
  • –with-http-realip_module 允许改变客户端请求头中客户端 IP 地址
  • –with-file-aio 启用 File AIO
  • –add-module=PATH 添加第三方外部模块

设置环境变量

# 添加环境变量,编辑 /etc/profile 文件
vim /etc/profile

# 此处为编辑内容,末尾处添加
# 若存在多个环境变量则用 : 分隔 
# 如:PATH=$PATH:/usr/local/php-7.4.27/bin:/usr/local/nginx/sbin
PATH=$PATH:/usr/local/nginx/sbin
export PATH

# 让环境变量生效
source /etc/profile
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

Nginx 相关命令

# 查看 Nginx 版本号
nginx -v

# 查看 Nginx 已经加载的模块
nginx -V

# 验证 Nginx 配置文件是否正确
nginx -t

# 启动 Nginx:
# -c 配置文件 表示根据指定文件启动,如果该配置文件和安装的nginx不是一个版本,会报错
nginx -c /usr/local/nginx/conf/nginx.conf

# 配置文件变化后重新加载配置文件并重启 Nginx 服务
nginx -s reload
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

配置 Nginx 开机启动,将 Nginx 添加至 service 服务

/etc/init.d 下创建文件 nginx,其内容参考nginx官方文档 Red Hat NGINX Init Script

#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig:   - 85 15
# description:  NGINX is an HTTP(S) server, HTTP(S) reverse \
#               proxy and IMAP/POP3 proxy server
# processname: nginx
# config:      /etc/nginx/nginx.conf
# config:      /etc/sysconfig/nginx
# pidfile:     /var/run/nginx.pid

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0

# 修改成nginx执行程序的路径
nginx="/usr/local/nginx/sbin/nginx"
prog=$(basename $nginx)

# 修改成nginx.conf文件的路径
NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"

[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx

lockfile=/var/lock/subsys/nginx

make_dirs() {
   # make required directories
   user=`$nginx -V 2>&1 | grep "configure arguments:.*--user=" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
   if [ -n "$user" ]; then
      if [ -z "`grep $user /etc/passwd`" ]; then
         useradd -M -s /bin/nologin $user
      fi
      options=`$nginx -V 2>&1 | grep 'configure arguments:'`
      for opt in $options; do
          if [ `echo $opt | grep '.*-temp-path'` ]; then
              value=`echo $opt | cut -d "=" -f 2`
              if [ ! -d "$value" ]; then
                  # echo "creating" $value
                  mkdir -p $value && chown -R $user $value
              fi
          fi
       done
    fi
}

start() {
    [ -x $nginx ] || exit 5
    [ -f $NGINX_CONF_FILE ] || exit 6
    make_dirs
    echo -n $"Starting $prog: "
    daemon $nginx -c $NGINX_CONF_FILE
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}

stop() {
    echo -n $"Stopping $prog: "
    killproc $prog -QUIT
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}

restart() {
    configtest || return $?
    stop
    sleep 1
    start
}

reload() {
    configtest || return $?
    echo -n $"Reloading $prog: "
    killproc $prog -HUP
    retval=$?
    echo
}

force_reload() {
    restart
}

configtest() {
  $nginx -t -c $NGINX_CONF_FILE
}

rh_status() {
    status $prog
}

rh_status_q() {
    rh_status >/dev/null 2>&1
}

case "$1" in
    start)
        rh_status_q && exit 0
        $1
        ;;
    stop)
        rh_status_q || exit 0
        $1
        ;;
    restart|configtest)
        $1
        ;;
    reload)
        rh_status_q || exit 7
        $1
        ;;
    force-reload)
        force_reload
        ;;
    status)
        rh_status
        ;;
    condrestart|try-restart)
        rh_status_q || exit 0
            ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
        exit 2
esac
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
# 设置文件的执行权限
chmod a+x /etc/init.d/nginx

# 添加系统服务
chkconfig --add nginx

# 开启服务
chkconfig nginx on

# 查看是否添加成功
chkconfig --list nginx
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

Nginx service 相关命令

# 启动
service nginx start

# 停止
service nginx stop

# 服务状态
service nginx status

# 重启
service nginx restart
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

报错处理

启动 nginx 服务报错 pid 文件无法读取到:
在这里插入图片描述
修改 /usr/local/nginx/conf/nginx.conf 配置文件中的 pid 文件路径为其报错路径:
在这里插入图片描述
更改完后,重新执行启动命令,没有报任何错误,启动正常。如果启动还是报错,可以将nginx服务先kill掉,再重新启动nginx服务
在这里插入图片描述
浏览器访问服务器IP地址:
在这里插入图片描述
若无法访问请查看服务器防火墙 80 端口 是否开放

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/661076
推荐阅读
相关标签
  

闽ICP备14008679号