How to install php-mongo on CentOS 5.3? How to install php-mongo on CentOS 5.3? mongodb mongodb

How to install php-mongo on CentOS 5.3?


If you have SSH access and root you should be able to follow the "Installing on *NIX" instructions (the RPMs are just created for convenience sake.)

You can try using pecl ... PECL is a repository for PHP Extensions and the mongo php driver uses that system.

Here is a blog post you might find helpful ...

http://learnmongo.com/posts/mongodb-php-install-and-connect/

Install instructions from that post ...

Command Line Install for Linux

Via your command line run pecl ... (if you use sudo):

$ sudo pecl install mongo

If you are already root ...

# pecl install mongo

If you get an error saying the system can’t find phpize then you may need to install the PHP dev package (this is how you do if your OS has aptitude, you might need to use some other method to install the PHP dev packaes) …

$ sudo aptitude install php5-dev

You will then need to edit your php.ini file add add the mongo.so extension:

extension=mongo.so

Restart your webserver and you are done.


If pecl doesn't work for you, you can manually install it as described here ...

http://www.php.net/manual/en/mongo.installation.php#mongo.installation.manual


I just installed it on centos using:

yum install php-pecl-mongo

Don't forget to restart the server to start using it: service httpd restart


Try Justin's solution first with pecl (you'll want to use yum rather than aptitude to install php-devel), but if that doesn't work, I happen to have the manual build procedures on hand already for my own deploy reference. :)

Installing the PHP MongoDB driver

As root:

  1. export PHP_AUTOCONF=/usr/bin/autoconf
  2. export PHP_AUTOHEADER=/usr/bin/autoheader
  3. wget http://pecl.php.net/get/mongo-1.0.9.tgz
  4. tar -xzf mongo-1.0.9.tgz
  5. cd mongo-1.0.9
  6. phpize
  7. ./configure
  8. make && make install
  9. To /etc/php.d/mongo.ini, add: extension=mongo.so