php-mongodb驱动安装
最近手上的项目用到了mongodb,原本打算用python写接口,php从python接口中取数据,后来觉得太麻烦,于是打算直接php操作,因此记录下php mongodb驱动安装的过程。
OS X
首先安装homebrew
brew install php70-mongodb
安装完成后重启apachesudo apachectl restart
出现mongodb,安装完成。
CentOS
mac只是开发机,最后项目还是要在服务器上跑,于是在CentOS上安装,CentOS上采用了编译安装的方式。
git clone https://github.com/mongodb/mongo-php-driver.git
cd mongo-php-driver
git submodule sync && git submodule update --init
phpize
./configure
make all -j 5
make install
这样就编译安装完成了,接下来的步骤就是写入php.ini
vi /etc/php.d/30-mongodb.ini
写入
extension=mongodb.so
保存退出,并重启httpd systemctl restart httpd
此时查看phpinfo
大功告成。