如果需要对已安装(通过 yum
、apt
、编译安装
等方式)的 nginx
添加第三方模块,只需要对安装后的 nginx
使用相同版本的源码进行编译后替换即可
安装源码安装需要的第三方包
shell1
| yum -y install gcc gcc-c++ make libtool zlib zlib-devel openssl openssl-devel pcre pcre-devel
|
下载对应的源码
通过 nginx -V
可以知道 yum 安装 nginx 的版本为 nginx version: nginx/1.16.0 ,下载对应的源码并解压
shell1 2 3 4
| cd /tmp wget http://nginx.org/download/nginx-1.16.0.tar.gz tar -zxvf nginx-1.16.0.tar.gz cd nginx-1.16.0
|
查看已安装 nginx 已有模块
返回值如下
nginx -V1 2 3 4 5 6 7 8 9
| nginx version: nginx/1.16.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC)
built with OpenSSL 1.0.2k-fips 26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --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=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie'
|
增加对应的模块
在进入 nginx 源码文件目录后,使用 ./configure
并在后面跟上前面 nginx -V
返回的 configure arguments
后的参数,最后加上新添加的模块相关参数
/tmp/nginx-1.16.01 2 3 4 5 6
| ./configure --prefix=/etc/nginx \ --modules-path=/usr/lib64/nginx/modules \ --sbin-path=/usr/sbin/nginx \ --conf-path=/etc/nginx/nginx.conf \ ... --add-module=/opt/new-nginx/nginx-module-vts
|
编译
备份现有可执行文件及替换
shell1 2 3 4
| systemctl stop nginx # 停止当前运行的 nginx cp /usr/sbin/nginx /usr/sbin/nginx.bak # 备份 cp /opt/nginx-1.12.1/objs/nginx /usr/sbin/nginx # 替换 systemctl start nginx # 重启 nginx 服务
|
完成
访问网站测试是否正常