系统环境:CentOS Linux release 8.4.2105
Nginx版本:nginx-1.20.2
1. 解压
tar -zxvf nginx-1.20.2.tar.gz
cd nginx-1.20.2/
2. 依赖安装
需要安装:gcc-c++ | gcc | pcre | pcre-devel | openssl | openssl-devel zlib | zlib-devel
yum list installed|grep 名称 //查询是否已安装
yum install -y 依赖名称 //安装依赖
3. 编译
./configure --prefix=/usr/local/nginx
make && make install
4. 运行
cd /usr/local/nginx/sbin/
./nginx -c ./nginx.conf 或者./nginx
// 其它命令
./nginx -s stop 停止
./nginx -s quit 停止
./nginx -s reload 重启
./nginx -V 查看版本
./nginx -s quit:此方式停止步骤是待nginx进程处理任务完毕进行停止。 ./nginx -s stop:此方式相当于先查出nginx进程id再使用kill命令强制杀掉进程。