基於本部落格yum安裝的lamp環境,phpize 位於 /usr/bin,php-config 位於/usr/bin,php.ini 位於/etc/
1.首先從http://pecl.php.net/package/mongo中選取適當版本的mongoDB擴充包下載。
2.解壓擴充包,並且進入解壓目錄
tar -zxf mongo-1.4.1.tgzcd mongo-1.4.1
3.在mongo-1.3.2目錄下執行phpize,命令如下:(註:此工具是php添加擴充的工具,我的phpize位置為/www/php/bin/phpize)
/usr/local/php/bin/phpize註:有時候會出血性一下錯誤:
- Configuring for:
- PHP Api Version: 20041225
- Zend Module Api No: 20060613
- Zend Extension Api No: 220060519
- Cannot find autoconf. Please check your autoconf installation and the
- $PHP_AUTOCONF environment variable. Then, rerun this script
問題在於:未安裝m4與autoconf可以下載 http://ftp.gnu.org/gnu/m4/m4-1.4.9.tar.gz http://ftp.gnu.org/gnu/autoconf/autoconf-2.62.tar.gz 安裝包安裝或者 yum -y install m4 autoconf
之後產生configure檔案
4.執行如下命令:
./configure --with-php-config=/usr/local/php/bin/php-config
註:–with-php-config 參數需要指定的是php-config檔案的位置,而不是php.ini檔案的位置
creating libtool
appending configuration tag "CXX" to libtool
configure: creating ./config.status
config.status: creating config.h
5.查看配置資訊如果無誤的話,編譯並安裝:
make&&make install
正確編譯執行結果如下:
Build complete.
Don't forget to run 'make test'.
Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20130712/
6.編譯安裝完成後,在php.ini中添加一句:
extension=mongo.so
7.重啟php-fpm或者web服務,查看phpinfo,如果有mongoDB,恭喜你,安裝成功了。