Nginx

Nginx 模組在 Centos 7 上編譯後二進制不兼容

  • December 27, 2020

我需要在 Centos 7 伺服器上使用 Nginx 模組ngx_http_auth_pam_module 。由於一個包只能通過 getpagespeed 儲存庫獲得,這不是免費的,我想自己編譯它。

按照我找到的各種說明,我下載了模組和 Nginx 的原始碼,列出了使用 安裝的 Nginx 版本的編譯選項,然後使用thennginx -V編譯模組,安裝了一些包來修復過程中的各種錯誤。./configure``make modules

但是,當我嘗試將 Nginx 配置為使用新編譯的模組時,nginx -t給了我nginx: [emerg] module "/opt/nginx/modules/ngx_http_auth_pam_module.so" is not binary compatible in /usr/share/nginx/modules/mod-http-auth-pam.conf:1

根據我的閱讀,這個“不兼容二進制”錯誤是由於安裝的 Nginx 版本與模組中的不同編譯標誌造成的,但是我確保複製所有由nginx -V. 我還確保下載與安裝的 Nginx 相同版本的原始碼。

知道可能導致問題的原因嗎?我應該解除安裝 Nginx 並重新安裝編譯版本,還是有它自己的問題?

附錄 :

這是整個./configure命令:

./configure --prefix=/usr/share/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 --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_auth_request_module --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --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_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E' --with-compat --add-dynamic-module=../ngx_http_auth_pam_module/

在這裡nginx -V

nginx version: nginx/1.12.2
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=/usr/share/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 --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_auth_request_module --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --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_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'

事實證明,該--with-compat選項導致了問題。我添加它是因為 nginx.com 上的指南是這樣說的,但是在刪除它並再次編譯後,nginx -t告訴我配置很好。

刪除--with-compat選項不可能解決它。

如果您收到有關使用此選項編譯的二進制不兼容模組的錯誤,則僅表示您為一個版本編譯它並載入到另一個版本。例如,當您在 NGINX 1.12.2 中載入(使用)模組時,模組是針對 NGINX 源 1.16.0 編譯的。順便說一下,那個版本很舊,並且有 HTTP/2 安全漏洞,你必須更新.

如果有的話,沒有太多理由使用--with-compat.

我這麼說是有偏見的,但是 GetPageSpeed 儲存庫雖然對 CentOS 7 不是免費的(在撰寫本文時對 CentOS/RHEL 8 是免費的),但它允許您始終獲得新 NGINX 版本的最新模組,這些模組是定期發布並解決新的安全問題以及添加的功能。否則,您必須不斷地重新編譯模組而不是 . yum update,並且可能最終在生產系統上使用編譯軟體。這本身就是一個安全問題。

GetPageSpeed 替代方案是訂閱 NGINX Plus,其成本遠遠超過幾美元。

引用自:https://serverfault.com/questions/988250