首页 > 代码库 > nginx+gridfs+mongodb 配置访问png图片显示无法加载问题

nginx+gridfs+mongodb 配置访问png图片显示无法加载问题

上传文件后,浏览器中请求:http://&lt;nginx server ip>:<port>/gfs/<my file> 浏览器出现“无法打开页面”的错误,查看错误日志,http error code 500。error.log中显示:
malloc(18446744056529682432) failed (12: Cannot allocate memory), client: <Client IP>, server: localhost, request: "GET /gfs/test2.zip HTTP/1.1", host: "<Nginx server IP>"

但是查看访问请求是成功的 get请求返回200,怎么也想不通,想着nginx配置文件也没问题呀,mongo数据库也能看到图片

于是又捋了下流程,首先用的是nginx1.47的版本,mongo-3.2版本

还有mongo和nginx启动顺序也有先后的,先启动mongo后启动nginx,因为nginx在启动的时候要找mongo,也按照这种方法做了,还是报无法加载图片

于是各种百度,发现原来副本集配置需要在nginx中写上所有的主机地址

nginx副本集的配置:
location /static/ {
         gridfs ebook;
                field=filename
                type=string;
         mongo "foo"

            192.168.1.60:27017
            192.168.1.61:27017
            192.168.1.62:27017;

}

对,没错儿!  nginx中的副本集中就是这样写的。

配置说明

gridfs 表示告诉nginx服务器要调用gridfs模块

root_collection= 指定Gridfs collection的前缀. 默认: fs

field= 指定用于查询的字段 可以是 _id 和 filename. 默认: _id

type= 指定查询的类型,这里支持 objectid, string 和int. 默认: objectid

user= 指定数据库的用户名. 默认: NULL

pass= 指定数据库的密码. 默认: NULL

 

nginx+gridfs+mongodb 配置访问png图片显示无法加载问题