在RHEL8/RHEL9操作系统上编译安装Nginx并配置服务

这篇文章主要讲述的是在RHEL8/RHEL9操作系统上编译安装Nginx并配置服务,本文档硬件采用VMware Workstation Pro虚拟机模拟,安装步骤与现实环境无异。关于虚拟机的安装及配置不过多阐述,本文主要讲述Nginx编译安装配置和服务配置过程。

一、环境准备

本文中提及的所有软件如何获取将在本章节讲解,如仅仅是需要参考如何编译安装Nginx请直接到Nginx官网下载软件后,跳转到本文第二章节”安装编译环境”开始阅读。
1.本文使用VMware Workstation Pro 17来模拟服务器硬件环境。
2.本文使用了RedHat Enterprise Linux(RHEL)8.10来安装Nginx。
3.编写本文时Nginx的稳定版本为nginx-1.26.1,如果有幸能被你看到这篇文章,你可以访问”Nginx官网“获取最新版本的软件。

二、安装编译环境

[root@yunweixia.com nginx-1.26.1]# yum -y install gcc wget automake autoconf libtool libxml2-devel libxslt-devel perl-devel perl-ExtUtils-Embed pcre-devel openssl-devel make

三、编译安装Nginx

1,下载最新的Nginx版本

[root@yunweixia.com nginx-1.26.1]# wget http://nginx.org/download/nginx-1.26.1.tar.gz

2,然后就是将下载下来的Nginx解压缩。

[root@yunweixia.com nginx-1.26.1]# tar zxvf nginx-1.26.1.tar.gz

3,进入解压缩后的Nginx目录。如果你要定制版本号可以更改源码目录src/core/nginx.h文件。

[root@yunweixia.com nginx-1.26.1]# cd nginx-1.26.1/

4,创建一个nginx目录用来存放运行的临时文件夹。

[root@yunweixia.com nginx-1.26.1]# mkdir -p /etc/nginx
[root@yunweixia.com nginx-1.26.1]# mkdir -p /var/cache/nginx
[root@yunweixia.com nginx-1.26.1]# useradd app01

5,开始configure Nginx。

[root@yunweixia.com nginx-1.26.1]#
./configure \
--prefix=/etc/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=app01 \
--group=app01 \
--with-pcre \
--with-http_v2_module \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-mail \
--with-mail_ssl_module \
--with-file-aio \
--with-ipv6 \
--with-http_v2_module \
--with-threads \
--with-stream \
--with-stream_ssl_module

6,接着继续编译。

[root@yunweixia.com nginx-1.26.1]# make

7,安装Nginx。

[root@yunweixia.com nginx-1.26.1]# make install

8,配置systemctl控制的Nginx服务,将以下下内容复制输入到新建的nginx.service文件中。

[root@yunweixia.com nginx-1.26.1]# vi /usr/lib/systemd/system/nginx.service
[Unit]
Description=nginx - high performance web server
Documentation=http://nginx.org/en/docs/
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
PIDFile=/var/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t -c /etc/nginx/nginx.conf
ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
[Install]
WantedBy=multi-user.target

9,使用systemctl来操作nginx服务,并开机启动。

[root@yunweixia.com nginx-1.26.1]# systemctl enable nginx.service

10,尝试管理Nginx。

[root@yunweixia.com nginx-1.26.1]# systemctl status nginx
[root@yunweixia.com nginx-1.26.1]# systemctl start nginx
[root@yunweixia.com nginx-1.26.1]# systemctl stop nginx

四、结论

按照本文可以完整的在RHEL8/RHEL9操作系统上编译安装Nginx并配置服务,并可以通过系统服务来启动、关闭、重启nginx服务。

五、扩展阅读

(一)普通用户如何启动nginx呢

1,[root@yunweixia.com nginx-1.26.1]# chown -R app01.app01 /etc/nginx
2,[root@yunweixia.com nginx-1.26.1]# chown -R app01.app01 /var/log/nginx/
3. [root@yunweixia.com nginx-1.26.1]# vi /etc/sudoers
app01 ALL=(ALL) NOPASSWD: /usr/bin/systemctl restart nginx,/usr/sbin/nginx -s reload,/usr/bin/systemctl start nginx

(二)隐藏nginx版本号信息

单是要隐藏 nginx 版本号信息只需要在 nginx 配置文件全局段添加 server_tokens off;然后重启 nginx 即可。

server_tokens off;

(三)[warn] “ssl_stapling”

[root@yunweixia.com nginx-1.26.1]# nginx -t
nginx: [warn] "ssl_stapling" ignored, issuer certificate not found for certificate "*"
[root@yunweixia.com nginx-1.26.1]# vi /etc/nginx/nginx.conf
server {
ssl_trusted_certificate /etc/nginx/ssl/2023_generalichina.com.csr.txt;
…
}

原创文章,作者:运维侠,如若转载,请注明出处:https://www.yunweixia.com/solutions/nginx-compile-install-configure-on-rhel8-rhel9-guide.html

(0)
运维侠的头像运维侠共建用户
上一篇 2025年7月2日 18:11
下一篇 2025年7月4日 18:11

相关推荐

发表回复

登录后才能评论