
Ich versuche, nginx
mit einem Modul zu kompilieren:https://github.com/leev/ngx_http_geoip2_module. Vor der Nginx-Kompilierung hat diese Bibliothek:https://github.com/maxmind/libmaxminddbmuss installiert werden. Ich bin den Anweisungen gefolgt (https://github.com/maxmind/libmaxminddb/blob/master/README.md#installing-from-a-tarball), kompiliert und installiert die Bibliothek. Nach der Installation ldconfig -p | grep maxminddb
ergibt sich:
libmaxminddb.so.0 (libc6,x86-64) => /usr/local/lib/libmaxminddb.so.0
libmaxminddb.so (libc6,x86-64) => /usr/local/lib/libmaxminddb.so
Wenn ich nginx jedoch mit ngx_http_geoip2_module konfiguriere, beschwert es sich während der Konfiguration:
adding module in /home/cilium/ngx_http_geoip2_module
checking for MaxmindDB library ... not found
./configure: error: the geoip2 module requires the maxminddb library.
das ist genau die Bibliothek, die ich bereits installiert habe. Dieser Fehler scheint von der config
Datei zu stammen ngx_http_geoip2_module
:
ngx_feature="MaxmindDB library"
ngx_feature_name=
ngx_feature_run=no
ngx_feature_incs="#include <maxminddb.h>"
ngx_feature_libs=-lmaxminddb
. auto/feature
if [ $ngx_found = yes ]; then
ngx_addon_name=ngx_http_geoip2_module
HTTP_MODULES="$HTTP_MODULES ngx_http_geoip2_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_geoip2_module.c"
CORE_LIBS="$CORE_LIBS -lmaxminddb"
else
cat << END
$0: error: the geoip2 module requires the maxminddb library.
END
exit 1
fi
Weiß jemand, was hier schief gelaufen sein könnte?
UPDATE: einige relevante Ausgaben von sh -x ./configure ..
:
+ echo adding module in /home/cilium/ngx_http_geoip2_module
adding module in /home/cilium/ngx_http_geoip2_module
+ test -f /home/cilium/ngx_http_geoip2_module/config
+ . /home/cilium/ngx_http_geoip2_module/config
+ ngx_feature=MaxmindDB library
+ ngx_feature_name=
+ ngx_feature_run=no
+ ngx_feature_incs=#include <maxminddb.h>
+ ngx_feature_libs=-lmaxminddb
+ . auto/feature
+ echo checking for MaxmindDB library ...\c
checking for MaxmindDB library ...+ cat
+ ngx_found=no
+ test -n
...
+ [ -x objs/autotest ]
+ echo not found
not found
+ echo ----------
+ cat objs/autotest.c
+ echo ----------
+ echo cc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/third_party/chromium/src -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/third_party/google-sparsehash/src -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/third_party/google-sparsehash/gen/arch/linux/x64/include -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/third_party/protobuf/src -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/third_party/re2/src -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/out/Debug/obj/gen -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/out/Debug/obj/gen/protoc_out/instaweb -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/third_party/apr/src/include -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/third_party/aprutil/src/include -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/third_party/apr/gen/arch/linux/x64/include -I /home/cilium/ngx_pagespeed-release-1.9.32.1-beta/psol/include/third_party/aprutil/gen/arch/linux/x64/include -o objs/autotest objs/autotest.c -Wl,-Bsymbolic-functions -Wl,-z,relro -lmaxminddb
+ echo ----------
+ rm -rf objs/autotest.c
+ [ no = yes ]
+ cat
./configure: error: the geoip2 module requires the maxminddb library.
+ exit 1
Antwort1
Mir fehlte die „devel“-Version von maxminddb, also habe ich Folgendes verwendet:
yum install libmaxminddb-devel
Antwort2
Für alle, die dieses Problem haben, hier ist die Lösung:
- git clone --rekursivhttps://github.com/maxmind/libmaxminddb
- cd libmaxminddb
- ./Bootstrap
- ./konfigurieren
- machen
- machen installieren
Ich bemerkte, dass nach dem Klonen zunächst keine ausführbare Konfigurationsdatei vorhanden war, aber nach dem Ausführen von ./bootstrap,es wurde erstellt. Dann führe ich ./configure, make, make install aus und dann bemerkte ich, dass im Ordner/usr/local/include
maxminddb_config.h und maxminddb.h wurden erstellt.
Dann habe ich mein Nginx-Installationsskript ausgeführt und es traten keine Fehler mehr auf.