首页 > 代码库 > 部署PHP连接操作MongoDB环境

部署PHP连接操作MongoDB环境

1,下载MongoDB数据库扩展介质

wget http://pecl.php.net/get/mongo-1.5.1.tgz

2,tar  zxvf mongo-1.5.1.tgz && cd mongo-1.5.1 && phpize

3,find / -name php-config 搜索php配置文件

4,预编译配置  ./configure --with-php-config=/usr/bin/php-config

5,make && make install编译

6,编辑/etc/php.ini加入

extension="mongo.so"