linux下為php添加mongodb擴充

來源:互聯網
上載者:User

基於本部落格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註:有時候會出血性一下錯誤:
  1. Configuring for:
  2. PHP Api Version: 20041225
  3. Zend Module Api No: 20060613
  4. Zend Extension Api No: 220060519
  5. Cannot find autoconf. Please check your autoconf installation and the
  6. $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,恭喜你,安裝成功了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.