1)、 下载nginx-gridfs의 代码
2)、安装 最新版 pcre
从https://sourceforge.net/projects/pcre/files/pcre/ 下载最新版 pcre
# unzip pcre-8.38.zip
# cd pcre-8.38
# ./configure --prefix=/usr/local/pcre-8.38 --libdir=/usr/local/lib/pcre --includedir=/usr/local /include/pcre
# make && make install
3)、安装 nginx
# yum -y install gcc* openssl*
# tar zxf nginx- 1.7.7.tar.gz
# cd nginx-1.7.7
# ./configure --prefix=/usr/local/nginx --http_ssl_module --with-http_stub_status_module --with-http_flv_module --with-http_gzip_static_module --add-module=/usr/src/nginx-gridfs --with-poll_module --without-select_module --with-http_realip_module --with-pcre=/usr/src/pcre-8.38
/bin/sh: 2행: ./configure: 해당 파일 또는 디렉터리 없음 make[1]: *** [/usr /local/pcre/Makefile] 오류 127
make[1]: `/usr/local/src/nginx-0.8.54' 디렉터리 종료 중
make: *** [빌드] 오류 2
# make && make install
4)、启动 nginx# /usr/local/nginx/sbin/nginx
# ps -ef | grep nginx
# netstat -nlp | grep nginx
# 컬 http://localhost
显示欢迎页면 ,此时nginx 搭建成功
5)、配置 nginx
# vim /usr/ local/nginx/conf/nginx.conf
위치 /pics/ {
Gridfs 사진 root_collection=fs 필드=파일 이름 유형=string -upics -ppics;
mongo 127.0.0.1:27017;
}
6)、mongodb 上传图文
#mongofiles put 1.jpg -d 사진 -t jpg -upics -ppics
# mongofiles 목록 -d 사진 -upics -ppics
7)、curl 下curl http://localhost/pics/1.jpg
以上就介绍了nginx 连接 mongodb, 包括了方face的内容, 希望对PHP教程有兴趣的朋友有所帮助。