执行了./configure --prefix=/tpdata/adp/nginx-1.22.1/ --add-module=/tpdata/adp/nginx-1.22.1/ngx_http_proxy_connect_module-master之后又执行maker然后提示make[1]: *** [objs/Makefile:1203: objs/addon/ngx_http_proxy_connect_module-master/ngx_http_proxy_connect_module.o] Error 1 make[1]: Leaving directory '/tpdata/adp/nginx' make: *** [Makefile:10: build] Error 2
时间: 2023-12-24 21:04:02 浏览: 282
./nginx: No such file or directory
5星 · 资源好评率100%
这个错误通常是由于 ngx_http_proxy_connect_module 模块的编译问题导致的。您可以尝试以下几个步骤:
1. 检查您的 ngx_http_proxy_connect_module 模块是否是最新版本,并且与您的 nginx 版本兼容。
2. 检查您的系统是否安装了必要的依赖项,例如 OpenSSL 和 PCRE,这些依赖项可能会影响 ngx_http_proxy_connect_module 的编译。
3. 检查您的编译选项是否正确,例如是否指定了正确的模块路径。
4. 尝试清除编译缓存并重新编译,例如执行 make clean 然后再次执行 configure 和 make 命令。
希望这些步骤可以帮助您解决问题。
阅读全文