Error while installing mongo driver for PHP on amazon linux

被刻印的时光 ゝ 提交于 2019-11-28 04:25:27

问题


I tried to install the mongodb driver for PHP on Amazon Linux. While running sudo pecl install mongo, I get the error message:

fatal error: openssl/evp.h: No such file or directory
 #include <openssl/evp.h>
                         ^
compilation terminated.
make: *** [io_stream.lo] Error 1
ERROR: `make' failed

PEAR Version: 1.9.5 PHP Version: 5.3.29

I installed gcc which helped me progress further with the install till this error.

The best Guide I was able to find was here: http://jonathanhui.com/install-mongodb-amazon-linux PHP's guide: http://php.net/manual/en/mongo.installation.php


回答1:


evp is high-level cryptographic functions.

Try to install development libraries:

Ubuntu: sudo apt-get install libssl-dev

CentOS: yum install openssl-devel




回答2:


The right package to install is not libssl-dev but

sudo apt-get install pkg-config

and now you can execute

sudo pecl install mongodb

Don't forget to add extension=mongodb.so to your php.ini file.

To know which php.ini file is loaded you can create and simple php file on vps

<?php
   php_info()
?>

Example directory php.ini in phpinfo()



来源:https://stackoverflow.com/questions/29262848/error-while-installing-mongo-driver-for-php-on-amazon-linux

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!