CentOS 编译安装 nginx

CentOS 编译安装 nginx

修改 yum 源地址为 阿里云

bash 复制代码
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
bash 复制代码
yum makecache

升级内核和软件

bash 复制代码
yum -y update

安装常用软件和依赖

bash 复制代码
yum -y install gcc gcc-c++ make cmake zlib zlib-devel openssl openssl-devel pcre-devel vim net-tools man wget tar

创建用户用户组

bash 复制代码
groupadd nginx
useradd nginx -g nginx -s /sbin/nologin -M

下载并编译安装

下载

bash 复制代码
wget https://nginx.org/download/nginx-1.24.0.tar.gz

解压

bash 复制代码
tar -zxvf nginx-1.24.0.tar.gz

进入nginx源代码目录

bash 复制代码
cd nginx-1.24.0

预编译

bash 复制代码
./configure --prefix=/usr/local/nginx \
 --user=nginx --group=nginx \
 --with-http_stub_status_module --with-http_ssl_module \
 --with-http_realip_module --with-http_gzip_static_module \
 --with-file-aio --with-http_realip_module  

验证 是否 成功

bash 复制代码
echo $?

编译

bash 复制代码
make -j4 

验证 是否 成功

bash 复制代码
echo $?

安装

bash 复制代码
make -j4 install

验证 是否 成功

bash 复制代码
echo $?

ls 以下为验证程序步骤可忽略

bash 复制代码
/usr/local/nginx/sbin/nginx -v

/usr/local/nginx/sbin/nginx -t

# 启动nginx
/usr/local/nginx/sbin/nginx

# 重新载入配置文件
/usr/local/nginx/sbin/nginx -s reload  

# 快速关闭 Nginx
/usr/local/nginx/sbin/nginx -s stop

# 关闭Nginx
/usr/local/nginx/sbin/nginx -s quit                  

编写启动脚本

bash 复制代码
cd /usr/lib/systemd/system/
vim nginx.service
bash 复制代码
[Unit]
Description=nginx
After=network.target remote-fs.target nss-lookup.target
 
[Service]
Type=forking
PIDFile=/usr/local/nginx/logs/nginx.pid
ExecStartPost=/bin/sleep 0.1
ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
 
[Install]
WantedBy=multi-user.target
bash 复制代码
# systemctl start|stop|reload|restart|status nginx.service

# 重新加载服务文件
systemctl daemon-reload 

# 启动 nginx 服务
systemctl start nginx.service

# 开机自启:
systemctl enable nginx.service

# 关闭开机自启:
systemctl disable nginx.service

防火墙开放端口

--zone 作用域

--add-port=80/tcp 添加端口

--permanent 永久生效

bash 复制代码
firewall-cmd --zone=public --add-port=80/tcp --permanent
bash 复制代码
firewall-cmd --reload

浏览器访问测试

http://服务器IP地址

相关推荐
大大大大晴天19 小时前
Hudi Metadata Table 与 Hive Sync (HMS)怎么选?
大数据
AlfredZhao1 天前
生产环境里,为什么不建议把普通端口直接暴露到公网?
linux·https·443·80
手可摘星辰7771 天前
一次线上FlinkCDC异常排查复盘
大数据·flink
大大大大晴天1 天前
Hudi技术内幕:Metadata Table原理与实践
大数据
大大大大晴天2 天前
Hudi技术内幕:深入解析Index索引机制
大数据
戴为沐2 天前
Linux内存扩容指南
linux
阿里云大数据AI技术2 天前
Flink Forward Asia 2026 深圳启幕:Agentic Streaming for AI,开启实时智能新范式
大数据·flink
zylyehuo3 天前
Linux 彻底且安全地删除文件
linux
SelectDB3 天前
阶跃星辰基于 SelectDB 构建 PB 级 Agent 可观测平台
大数据·数据库·aigc
用户805533698033 天前
主线 U-Boot 上 RK3506:和闭源 rkbin 拔河的三个隐性契约
linux·嵌入式