How to Install the MongoDB PHP Driver (Extension) on Fedora 21

Step 1: Setup Environment, Install PHP Extension & Application Repository (PEAR)


As a matter of best practice we’ll update our packages:

sudo yum -y update


Then let’s install a compiler, the PHP Extension and Application Repository (PEAR), and PHP development tools:

sudo yum -y install gcc php-pear php-devel


Step 2: Installation with the PHP Extension Community Library (PECL)


Now let’s install the MongoDB PHP driver (extension) with PECL:

sudo pecl install mongo


Next you’ll be prompted regarding ‘MongoDB Enterprise Authentication’. If you’re not specifically using SASL (and already have it installed), then hit enter to continue (thus answering ‘no’):


Build with Cyrus SASL (MongoDB Enterprise Authentication) support? [no] :


Step 3:Configure PHP

sudo vim /etc/php.ini



It is possible to place the following bit of code anywhere in the php.ini file. However, the most common location for extensions is in the Dynamic Extensions section.


Find Dynamic Extensions and insert the following in that section:

extension=mongo.so


Then exit and save the file with the command :wq .


And now we’ll restart Apache:

sudo systemctl restart httpd


Step 4: Verify the Extension is Available


Now verify that the extension is available by using the following command:

php -m | grep -i mongo


Your result should be:

mongo

  • 0 Usuários acharam útil
Esta resposta lhe foi útil?

Artigos Relacionados

How to List Compiled PHP Modules from Command Line

Pre-Flight Check These instructions are intended specifically for listing compiled PHP modules...

How to Install or Uninstall PECL Extensions

Pre-Flight Check These instructions are intended specifically for installing or uninstalling...

How to Install the MongoDB PHP Driver (Extension) on CentOS 6

Step 1: Setup Environment, Install PHP Extension & Application Repository (PEAR) As a matter...

How to Add a User and Grant Root Privileges on CentOS 6.5

Step 1: Add the User It’s just one simple command to add a user. In this case, we’re...

How to Add a User and Grant Root Privileges on Ubuntu 14.04

Step 1: Add the User It’s just one simple command to add a user. In this case, we’re...