0

githubからnginx-gridfsを実行して、mongodbをnginxに接続しようとしています。以下のステートメントを使用して構成した場合、 https://github.com/mdirolf/nginx-gridfsREADMEファイルに示されている正確な手順に従いました。

./configure --add-module=/home/yogesh/nginx-gridfs-master --prefix=/usr/local/nginx




Configuration summary
  + using system PCRE library
  + OpenSSL library is not used
  + md5: using system crypto library
  + sha1: using system crypto library
  + using system zlib library

  nginx path prefix: "/usr/local/nginx"
  nginx binary file: "/usr/local/nginx/sbin/nginx"
  nginx configuration prefix: "/usr/local/nginx/conf"
  nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
  nginx pid file: "/usr/local/nginx/logs/nginx.pid"
  nginx error log file: "/usr/local/nginx/logs/error.log"
  nginx http access log file: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  nginx http proxy temporary files: "proxy_temp"
  nginx http fastcgi temporary files: "fastcgi_temp"
  nginx http uwsgi temporary files: "uwsgi_temp"
  nginx http scgi temporary files: "scgi_temp

MAKEを押してファイルを作成すると、次のエラーが発生します。

gcc -c -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g  --std=c99 -Isrc -I src/core -I src/event -I src/event/modules -I src/os/unix -I objs -I src/http -I src/http/modules \
        -o objs/src/http/modules/ngx_http_upstream_keepalive_module.o \
        src/http/modules/ngx_http_upstream_keepalive_module.c
make[1]: *** No rule to make target `/home/yogesh/nginx-gridfs-master/mongo-c-driver/src/*.h', needed by `objs/addon/nginx-gridfs-master/ngx_http_gridfs_module.o'.  Stop.
make[1]: Leaving directory `/home/yogesh/nginx-1.2.6'
make: *** [build] Error 2

エラーを解決するにはどうすればよいですか.....

4

1 に答える 1

2

nginx-gridfsにはサブモジュール(mongo-c-driver)があります。

nginx-gridfsディレクトリで次のコマンドを実行した後、。/configureから再起動してみてください。

git submodule update --init
于 2013-01-14T16:18:48.253 に答える