Install MongoDB PHP driver module extension ____php

Source: Internet
Author: User
Tags install mongodb mongodb

This article is to record a few errors.

First download mongo-php-driver, eat not to see the deficiency of the Readme directly configure not. Error cannot find Php-config. Please use--with-php-config=path

To run Phpize first, no words to install Php5-dev can be.

and follow the steps.

Phpize
./configure
Make
sudo make install


Then, add the following to your ' php.ini ' file:


Extension=mongo.so

The success of the test is to phpinfo to see if the MONGO module has been loaded, the result is not.

In another way, the deletion of the php.ini just added in the

Add the following code to the/etc/php5/mods-available/mongo.ini
; Configuration for PHP MONGO module
; priority=30
extension=mongo.so

And then create link

Cd.. /CLI/CONF.D
sudo ln-s. /.. /mods-available/mongo.ini 30-mongo.ini
Cd.. /FPM/CONF.D
sudo ln-s. /.. /mods-available/mongo.ini 30-mongo.ini
In fact, both of these methods do the same thing.

The result is still not, never again, make test fails.

Then, make a clean, come back to finish.

So I learned again, made Clean is the object file (the suffix ". O" file) and the executable file that was created by the last make command.

Also, remember to restart the PHP5 service.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.