源代码编译安装Nginx
源代码编译安装Nginx
安装前环境要求
- 红帽系
yum install gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel -y
- Debian系
apt-get install build-essential libpcre3 libpcre3-dev zlib1g-dev openssl libssl-dev -y
-
gcc环境
-
PERE
-
PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库。Nginx的http模块使用pcre来解析正则表达式,所以需要在Linux上安装pcre库。
注:pcre-devel是使用pcre开发的一个二次开发库。nginx也需要此库。
-
-
zlib
- zlib库提供了很多种压缩和解压缩的方式,nginx使用zlib对http包的内容进行gzip,所以需要在linux上安装zlib库。
-
openssl
-
OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及SSL协议,
并提供丰富的应用程序供测试或其它目的使用。
Nginx不仅支持http协议,还支持https(即在ssl协议上传输http),所以需要在linux安装openssl库。
-
下载解压Nginx源码
wget https://nginx.org/download/nginx-1.22.1.tar.gz
tar -zxvf nginx-1.22.1.tar.gz
配置编译参数
cd nginx-1.22.1
./configure \
--prefix=/usr/local/nginx \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_stub_status_module \
--with-http_ssl_module
- 参数详解见官网文档
编译安装
make -j$(nproc)
make install
- $(nproc) 获取机器核心数量,满核心编译
编辑service文件
nano /usr/lib/systemd/system/nginx.service
[Unit]
// 描述服务
Description=Nginx Server
// 描述服务类别
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
PIDFile=/var/run/nginx/nginx.pid
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=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
// 给服务分配临时空间
PrivateTmp=true
[Install]
WantedBy=multi-user.target
- 根据实际情况修改路径
重新加载systemd配置文件
systemctl daemon-reload
测试服务启动、停止、重启
systemctl start nginx
systemctl status nginx
systemctl restart nginx
systemctl stop nginx
设置开机启动
systemctl enable nginx