標籤:http io ar os sp for strong on bs
安裝方法參考:
http://php.net/manual/en/mongo.installation.php
tar驅動包連結:
github:驅動連結
pecl:http://pecl.php.net/package/mongo
rpm驅動包連結:http://downloads-distro.mongodb.org/repo/redhat/os/
Centos,RedHat推薦rpm
tar包的安裝方法:
[[email protected] ]# tar -zxvf mongo-php-driver-1.5.8.tar.gz
[[email protected] ]# cd mongo-php-driver-1.5.8
找到自己安裝的phpize(根據自己安裝目錄確定)
[[email protected] localhost mongo-php-driver-1.5.8]# /usr/local/php56/bin/phpize
Configuring for:
PHP Api Version: 20131106
Zend Module Api No: 20131226
Zend Extension Api No: 220131226
[[email protected] mongo-php-driver-1.5.8]#
./configure --enable-mongo=share --with-php-config=/usr/local/php56/bin/php-config
[[email protected] mongo-php-driver-1.5.8]# make
Build complete.
Don‘t forget to run ‘make test‘.
[[email protected] localhost mongo-php-driver-1.5.8]# make install
Installing shared extensions: /usr/local/php56/lib/php/extensions/no-debug-non-zts-20131226/
說明安裝成功 接下來配置php.ini
編輯php.ini 加入
extension=mongo.so
重啟php-fpm
pkill php-fpm
/usr/local/php/sbin/php-fpm
驗證:php –m
查看終端輸出是否有mongo,有的話,證明OK
MongoDB PHP driver