1、系统版本
Centos 7.9
2、下载Nginx源码包
wget -c http://nginx.org/download/nginx-版本号.tar.gz -P /usr/src/ #存放的路径
3、解压下载的文件
tar xvf 文件名称
cd 到加压出来的路径
4、执行./configure文件
cd /usr/src/nginx文件夹下面
运行 ./configure
5、关闭防火墙
systemctl stop firewalld
6、启动nginx
systemctl start nginx 启动
systemctl enable nginx 开机启动
systemctl status nginx 查看nginx的状态
active(running)状态是启动成功
7、说明
如果下载提示没有wget命令 请用yum install -y wget 安装
在配置 ./configure 的时候提示没有依赖的话请下载对应的依赖即可
如: yum install -y gcc pcre-devel 等依赖库。
一定要联网哦!!!