内容目录
mongodb服务端》基于最新的2.6.6
wget --no-check-certificate http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.6.6.tgz mv mongodb-linux-x86_64-2.6.6.tgz mongodb.tgz tar zxvf mongodb.tgz mkdir -p /data/db mv mongodb-linux-x86_64-2.6.6 mongodb cd mongodb bin/mongod
加入开机自启动
vim /etc/rc.local /root/mongodb/bin/mongod
mongodb 的php扩展》基于github最新版
wget -c https://github.com/mongodb/mongo-php-driver/archive/master.zip unzip master cd mongo-php-driver-master/ /usr/local/php/bin/phpize ./configure -enable-mongo=share -with-php-config=/usr/local/php/bin/php-config make&&make install
安装后修改php.ini并且重启
vi /usr/local/php/etc/php.ini extension=mongo.so