Linux(CentOS7) 下 Nginx1.15.8 安装步骤

安装 make 和 gcc:

yum -y install autoconf automake make
yum -y install gcc gcc-c++ 

安装nginx依赖的库:

yum -y install pcre pcre-devel    
yum -y install zlib zlib-devel
yum install -y openssl openssl-devel

下载源码、解压:

wget  http://nginx.org/download/nginx-1.15.8.tar.gz
tar -zxvf nginx-1.15.8.tar.gz 

进入解压好的目录,执行配置脚本:

cd nginx-1.15.8
./configure   --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module 

–prefix:指定安装目录
–with-http_stub_status_module:启用 http 状态监控
–with-http_ssl_module:启用 https 模块

creating objs/Makefile 代表编译成功
Linux(CentOS7) 下 Nginx1.15.8 安装步骤_第1张图片
编译:

make

安装:

make install

Linux(CentOS7) 下 Nginx1.15.8 安装步骤_第2张图片

配置环境变量:

vim ~/.bash_profile

加入
export PATH=$PATH:/usr/local/nginx/sbin/
Linux(CentOS7) 下 Nginx1.15.8 安装步骤_第3张图片

source ~/.bash_profile

验证安装是否成功:

nginx -t

在这里插入图片描述

你可能感兴趣的:(Nginx基础与进阶)