Home > Article > Backend Development > Detailed explanation of the steps to install php-mongodb extension using PECL method
This time I will bring you the PECL methodInstallationphp-mongodbDetailed explanation of the extension steps, what are the precautions for installing the php-mongodb extension in the PECL method, The following is a practical case, let’s take a look.
Start the installation
The new virtual machine Ubuntu14.04, apache2 and php5 are manually installed; the rest are not.
Then we use one command to install the php extension
sudo pecl install mongodb
At this time, an error will be reported, showing that the dependent package php-pear is missing, then install it, the command is as follows
sudo apt-get install php-pear
When we When we execute the pecl install mongodb command again, we will be prompted that phpize is not an internal command. We need to install php5-dev, and then install the following command:
sudo apt-get install php7.0-dev
When we execute pecl install mongodb again, we should report this error, OpenSSL Library is missing. Then we need to install the following things
apt-get install openssl libssl-dev libssl0.9.8 libgtk2.0-dev
When we execute pecl install mongodb again, the hard work pays off and the installation is finally successful, but in the end we are prompted that we need to manually add the mongodb extension in the php.ini file. as the picture shows.
Finally we open vim /etc/php5/apache2/php.ini and add a line of code like this.
# /etc/php5/apache2/php.ini extension=mongodb.so
In the end, this effect will be displayed.
Similar to redis, pecl install redis
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website !
Recommended reading:
Detailed explanation of the steps for PHP RSA to generate a key with 1024 bits
PHP development api interface security Detailed explanation of verification steps
The above is the detailed content of Detailed explanation of the steps to install php-mongodb extension using PECL method. For more information, please follow other related articles on the PHP Chinese website!