centos 7编译安装nginx

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 7编译安装nginx相关的知识,希望对你有一定的参考价值。

  1. 禁用防火墙

    systemctl disable firewalld

    systemctl stop firewalld

    setenforce 0

  2. 安装pcre库 

    yum install pcre*

  3. 安装zlib库

    yum install zlib*

  4. 增加nginx用户:useradd nginx -G nginx

  5. 编译安装nginx:

    ./configure --prefix=/usr/local/nginx --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --user=nginx --group=nginx 

    make && make install

  6. 启动nginx:

    cd /usr/local/nginx/sbin

    nohup ./nginx &

以上是关于centos 7编译安装nginx的主要内容,如果未能解决你的问题,请参考以下文章

centos 7 编译安装nginx --1

CentOS 7.4 64位 编译安装 LNMP

CentOS 7编译安装Nginx

原创:Centos 7 源码编译安装 Nginx 1.13

centos 7.5 1804编译安装nginx 1.16.0

CentOS 7使用源码编译安装Nginx,以及配置使用autoindex模块