编译安装nginx

Posted Ray_chen

tags:

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

# 安装

version=1.16.0
yum
install -y gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel autoconf automake make wget https://nginx.org/download/nginx-${version}.tar.gz tar -xf nginx-${version}.tar.gz cd nginx-${version} useradd -M -s /sbin/nologin nginx ./configure --prefix=/soft/nginx --user=nginx --group=nginx --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --with-http_ssl_module --with-stream make && make install

# 设置环境变量

vim /etc/profile.d/nginx.sh

export PATH=/soft/nginx/sbin:$PATH

source /etc/profile

 

# 查看nginx默认安装模块(在解压的二进制包目录下)

 cat auto/options |grep "YES"

 

 

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

源码编译三部曲(以nginx示例)

源码编译三部曲(以nginx示例)

Nginx编译安装

云计算days7----编译安装nginx

安装nginx的时候,是怎么编译老出错啊

从nginx的编译安装,了解编译安装原理(转)