Skip to content

Instantly share code, notes, and snippets.

@humanely
Forked from imposibrus/install.sh
Created July 15, 2017 03:14
Show Gist options
  • Save humanely/cef31ecd803c89919099aa079986ab82 to your computer and use it in GitHub Desktop.
Save humanely/cef31ecd803c89919099aa079986ab82 to your computer and use it in GitHub Desktop.
Install MongoDB PHP driver on Ubuntu 14.04
sudo apt-get install -y php-pear php5-dev
sudo pecl install mongo
sudo sh -c "echo 'extension=mongo.so' > /etc/php5/mods-available/mongo.ini"
sudo ln -s /etc/php5/mods-available/mongo.ini /etc/php5/apache2/conf.d/mongo.ini
sudo service apache2 restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment