|
|
(9 intermediate revisions by 3 users not shown) |
Line 1: |
Line 1: |
| ==Drivers== | | ==Drivers== |
− | ===Bitnami Installs on Windows, Mac, and Linux===
| |
− | '''Note''':The Bitnami packages come with an instance of MongoDB and the drivers already installed. No further action is necessary, unless upgrading from pre 2.1.2 to 2.1.2 or later.
| |
− |
| |
− | ====Windows====
| |
− | If you have a Bitnami for Windows stack that has the older mongo driver, but need to upgrade to the mongodb driver, follow this procedure
| |
− | *'''Download the dll from pecl'''
| |
− | **http://pecl.php.net/package/mongodb
| |
− | **Click on the DLL link for the latest stable package unless you have a reason to use a different version
| |
− | **On the download page you will be presented with multiple options. You need to always choose '''thread safe''' and '''32 bit (x86)'''. Choose the version that matches the PHP version of your stack (5.5, 5.6, 7.0.)
| |
− | **unzip the package after download
| |
− | *'''Copy the php_mongodb.dll file to the extensions directory'''
| |
− | **the PHP extensions default location is <source lang=bash>C:\Bitnami\dreamfactory-{version number}\php\ext\</source>
| |
− | *'''Edit the php.ini file'''
| |
− | **php.ini default location is <source lang=bash>C:\Bitnami\dreamfactory-{version number}\php\</source>
| |
− | **add a line that says <source lang=bash>extension=php_mongodb.dll</source>
| |
− | **save the php.ini file
| |
− | *'''Restart your Bitnami stack'''
| |
− |
| |
− |
| |
− | ====Linux VM and Cloud Images====
| |
− | If you have a Bitnami for Linux VM or Cloud image that has the older mongo driver, but need to upgrade to the mongodb driver, follow this procedure
| |
− | *'''Clone the source'''
| |
− | **You can do this from anywhere that you have write access, but we recommend your user's home folder.
| |
− | **<source lang=bash>git clone https://github.com/mongodb/mongo-php-driver.git</source>
| |
− | *'''Change into cloned repo and get submodules'''
| |
− | **<source lang=bash>cd mongo-php-driver</source>
| |
− | **<source lang=bash>git submodule sync && git submodule update --init</source>
| |
− | *'''Prepare the build environment for a PHP extension'''
| |
− | **<source lang=bash>phpize</source>
| |
− | *'''Install the necessary libraries'''
| |
− | **<source lang=bash>sudo apt-get update && sudo apt-get install libssl-dev libsslcommon2-dev libcurl4-openssl-dev pkg-config</source>
| |
− | *'''Configure the environment'''
| |
− | **<source lang=bash>./configure --with-libdir=/lib/x86_64-linux-gnu</source>
| |
− | *'''Compile the module'''
| |
− | **<source lang=bash>make all -j 5</source>
| |
− | *'''Install the module'''
| |
− | **<source lang=bash>sudo make install</source>
| |
− | **You should get output indicating that the module was installed to an extensions directory, for example /opt/binamit/php/lib/php/extensions/
| |
− | *'''Edit php.ini'''
| |
− | **Use your text editor of choice to edit /opt/bitnami/php/etc/php.ini . I like vim
| |
− | **<source lang=bash>sudo vim /opt/bitnami/php/etc/php.ini</source>
| |
− | **Add a line indicating the new module. It can go anywhere in the file. I put mine right next to the mongo.so instruction.
| |
− | ***<source lang=bash>extension=mongodb.so</source>
| |
− | **Save the file and exit
| |
− | *'''Restart the Bitnami stack'''
| |
− | *'''Verify successful installation using php -m and grep'''
| |
− | Example:
| |
− | <source lang=bash>bitnami@ubuntu:~/mongo-php-drivers$ php -m grep mongo
| |
− | mongo
| |
− | mongodb</source>
| |
| | | |
| ===Manual Install on Linux=== | | ===Manual Install on Linux=== |
− | Beginning with DreamFactory 2.1.2 the newer mongodb driver is both supported and required. This gives MongoDB compatibility up to the latest version (3.2)
| + | ==== Requirements ==== |
| + | * You will need the following items from your package manager (linux) |
| + | ** PHP Pear and PHP Dev (for PECL) |
| + | ** Development tools / (e.g. Build Essential tools) |
| + | ** libsslcommon2-dev |
| + | ** libssl-dev |
| + | ** libcurl4-openssl-dev |
| + | ** pkg-config |
| | | |
− | ====mongo driver==== | + | ===Manual Install on Mac Sierra +=== |
− | * '''used for DF 2.1.1 and earlier''' | + | * You will need to remove Mongo if brew installed as it had been deprecated: https://gist.github.com/katychuang/10439243 |
− | * '''Ensure that you have the php-pear and php5-dev packages installed on your system. You will also need the pcre3 and sasl2 development libraries.'''
| + | * Install Mongo drivers: https://github.com/mongodb/mongo-php-driver |
− | **<source lang=bash>$ sudo apt-get install php-pear php5-dev libpcre3-dev libsasl2-dev</source>
| + | * You will need to use PECL to build MongoDB: https://pecl.php.net/package/mongodb/1.5.2 |
− | * '''Use PECL to make the mongo.so file'''
| + | |
− | **<source lang=bash>$ sudo pecl install mongo</source>
| + | |
− | ::'''Note''':If the the install generates any errors it will fail. You will need to troubleshoot based on the error reported. | + | |
− | * '''Add the module to your php.ini file. In debian based distributions, you can follow this procedure:''' | + | |
− | ** '''Create a module file for your mongo installation.'''
| + | |
− | **<source lang=bash>$ sudo touch /etc/php5/mods-available/mongo.ini</source>
| + | |
− | ** '''Edit the file you just created in your preferred text editor.''' | + | |
− | ::There is a single line in the file it looks like this: | + | |
− | ***<source lang=bash>extension=mongo.so</source>
| + | |
− | ** '''Enable the php extension'''
| + | |
− | ***<source lang=bash>$ sudo php5enmod mongo</source>
| + | |
− | ** '''Restart your web service service'''
| + | |
− | ***<source lang=bash>$ sudo service apache2 restart</source> or
| + | |
− | ***<source lang=bash>$ sudo service php5-fpm restart && sudo service nginx restart</source>
| + | |
| | | |
− | ====mongodb driver==== | + | ==== Driver Install ==== |
− | '''Overview'''
| + | * In Linux you will need to use PECL to build the mongodb module and then enable in php. |
− | These instructions are specific to Debian-based Linuxes, but the principal is the same -- Get the dependencies. Build the .so file with PECL. Add it to your PHP.
| + | |
| | | |
− | * '''used for DF 2.1.2 and later'''
| + | For concrete examples, see the [[../../../APT/Ubuntu_16.04/Modules/MongoDB_Ubuntu_16| Ubuntu 16.04]] instructions. |
− | * '''Ensure that you have the php-pear and php5-dev packages installed on your system. You will also need the some development libraries (listed below.)'''
| + | |
− | **<source lang=bash>$ sudo apt-get install php-pear php5-dev autoconf g++ make openssl libssl-dev libcurl4-openssl-dev pkg-config libsasl2-dev libpcre3-dev</source>
| + | |
− | * '''Use PECL to make the mongodb.so file'''
| + | |
− | **<source lang=bash>$ sudo pecl install mongodb</source>
| + | |
− | ::'''Note''':If the the install generates any errors it will fail. You will need to troubleshoot based on the error reported.
| + | |
− | * '''Add the module to your php.ini file. In debian based distributions, you can follow this procedure:'''
| + | |
− | ** '''Create a module file for your mongo installation.'''
| + | |
− | **<source lang=bash>$ sudo touch /etc/php5/mods-available/mongodb.ini</source>
| + | |
− | ** '''Edit the file you just created in your preferred text editor.'''
| + | |
− | ::There is a single line in the file it looks like this:
| + | |
− | ***<source lang=bash>extension=mongodb.so</source>
| + | |
− | ** '''Enable the php extension'''
| + | |
− | ***<source lang=bash>$ sudo php5enmod mongodb</source>
| + | |
− | ** '''Restart your web service service'''
| + | |
− | ***<source lang=bash>$ sudo service apache2 restart</source> or
| + | |
− | ***<source lang=bash>$ sudo service php5-fpm restart && sudo service nginx restart</source>
| + | |