avatar

Andres Jaimes

Installing MongoDB/PHP Driver on CentOS 6

Since the module is not included with the default PHP installation, you have to download it from the official repository: 1cd 2mkdir mongo-php-driver 3cd mongo-php-driver 4curl https://codeload.github.com/mongodb/mongo-php-driver/zip/master > mongo-php-driver-master.zip Unzip it 1unzip mongo-php-driver-master.zip 2cd mongo-php-driver-master You need _phpize _to build the module. You can install it from the remi repository: 1wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm 2rpm -Uvh remi-release-6.rpm 3yum --enablerepo=remi install php-devel Configure and build 1phpize 2./configure 3make all 4sudo make install Make sure the installation directory is the same as the PHP extension directory by running:

Installing MongoDB on CentOS 6

The first step is to configure the repositories. Create the following file /etc/yum.repos.d/10gen.repo with the following contents: For 32-bit systems: [10gen] name=10gen Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/i686 gpgcheck=0 enabled=1 For 64-bit systems: [10gen] name=10gen Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64 gpgcheck=0 enabled=1 Install Mongo 1yum install mongo-10gen mongo-10gen-server  Configure MongoDB You can configure Mongo by editing the following file: 1/etc/mongod.conf Set Mongo to autostart on system boot: 1chkconfig mongod on Start Mongo 1service mongod start Stop Mongo