- Install the MongoDB repo:
cd /etc/yum.repos.d
- Create the mongodb.repo file:
nano -w mongodb.repo
- Paste this code inside:
[mongodb] name=MongoDB Repo baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86\_64/ gpgcheck=0 enabled=1
- Install MongoDB using Yum:
yum install mongo-10gen mongo-10gen-server
PS: At this point, you should have MongoDB installed on your CentOS + cPanel box.
- Configure MongoDB to automatically start after reboot:
chkconfig mongod on
- Start MongoDB:
service mongod start
- Use the powerful PECL command to install your MongoDB PHP extension:
pecl install mongo
- Restart Apache to apply changes:
service httpd restart
- Verify installation with this command:
php -i | grep mongo -i
- If you see the MongoDB extension in the output, then you are all set!

