首页 > 系统相关 >Nginx添加第三方模块,出现“is not binary compatible in”错误的解决方案

Nginx添加第三方模块,出现“is not binary compatible in”错误的解决方案

时间:2024-02-27 21:02:19浏览次数:24  
标签:binary openresty Nginx module compatible nginx usr conf local

动态编译好第三方模块:ngx_http_ts_module.so 检测nignx配置,异常

sudo /usr/local/openresty/nginx/sbin/nginx -t
nginx: [emerg] module "/usr/local/openresty/nginx/modules/ngx_http_ts_module.so" is not binary compatible in /usr/local/openresty/nginx/conf/nginx.conf:7
nginx: configuration file /usr/local/openresty/nginx/conf/nginx.conf test failed

原因

第三方模块的编译中包含的签名和使用的nignx不一致

解决方案

先通过 nginx -V 命令得到当前配置的configure配置,在复制所有的配置命令。添加到:

./configure [“你的nignx -V 得到的配置参数”] --add-dynamic-module=/etc/pan1/fastdfs-nginx-mo

重新生成第三方模块。接下来该怎么配置就怎么配置。问题解决!

 

标签:binary,openresty,Nginx,module,compatible,nginx,usr,conf,local
From: https://www.cnblogs.com/tinywan/p/18038318

相关文章

  • Nginx443端口绑定多域名
    Nginx443绑定多域名1.修改nginx的配置文件server{#基于域名的虚拟主机listen443ssl;server_nametest1.abc.com;ssl_certificate/home/nginx/ssl/test1.abc.com.pem;ssl_certificate_key/home/nginx/ssl......
  • LeetCode] 2476. Closest Nodes Queries in a Binary Search Tree
    Youaregiventherootofabinarysearchtreeandanarrayqueriesofsizenconsistingofpositiveintegers.Finda2Darrayanswerofsizenwhereanswer[i]=[mini,maxi]:miniisthelargestvalueinthetreethatissmallerthanorequaltoqueries[......
  • yum nginx报错
    [root@instance-as0nsoaxnginx]#yum-yinstallgdgd-develerror:db5error(11)fromdbenv->open:Resourcetemporarilyunavailableerror:cannotopenPackagesindexusingdb5-Resourcetemporarilyunavailable(11)error:cannotopenPackagesdatabasein......
  • Nginx之概念
      服务器     服务器的概念分为两种:1主机 2运行程序容器 Nginx概述Nginx(enginex)是一个高性能的HTTP和反向代理web服务器,同时也提供了IMAP/POP3/SMTP服务。Nginx是一款轻量级的Web服务器/反向代理服务器及电子邮件(IMAP/POP3/SMTP)代理服务器。 Nginx的特......
  • MySQL备份恢复数据--binary-mode is enabled and mysql is run in non-interactive...
    使用mysqldump;MySQL自带的逻辑备份工具。mysqldump[选项]数据库名[表名]>脚本名mysqldump[选项]--数据库名[选项表名]>脚本名mysqldump[选项]--all-databases[选项]>脚本名备份mysqldump-hlocalhost-uwordpress-pwordpress_20200104>c......
  • nginx
    226worker_processes1;events{worker_connections1024;}http{includemime.types;default_typeapplication/octet-stream;sendfileon;keepalive_timeout65;server{listen80;server_name......
  • nginx负载均衡
    sudoyuminstall-yyum-utilssudoyum-config-manager--add-repohttps://rpm.releases.hashicorp.com/RHEL/hashicorp.reposudoyum-yinstallconsulunzipconsul_1.9.4_linux_amd64.zipmvconsul/usr/local/bin/consulversionconsul常用命令consul命令 描述agent 运行......
  • 请求接口时报错nginx 413 Request Entity Too Large
    1.在rancher容器中执行命令行$cd/etc/nginx$catnginx.conf2.vi或vim修改配置文件bash:vim:commandnotfound更新软件包列表$sudoapt-getupdate更新软件包$sudoapt-getupgrade安装vim$sudoapt-getinstallvim3.vim修改conf配置文件http新增client_m......
  • nginx显示指定文件
    nginx提供文件服务需增强安全性,数据集管理中通过配置nginx只显示指定目录下以preview.jpg(png,jpeg等)结尾的目录文件,其路径配置需要使用正则表达式,并且传参,配置如下:#nginxlocation中~开头的路径表示使用正则表达式location~ /data/data/dir/(.+preview\.(?:jpg|jpeg|gif|p......
  • nginx反向代理配置介绍
    近期搭建portal网站,发现了nginx的强大,跟大家分享一下,背景知识,nginx代理过程发现:nginx中也可以加入第三方扩展来增强其功能,通常就是下载该模块然后再重新编译nginx加入该模块,比如:https://github.com/openresty/headers-more-nginx-module此外还有一些打包好的nginx增强包,不用编译......