Linux下php安装openSSL模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下php安装openSSL模块相关的知识,希望对你有一定的参考价值。

Linux下php安装openSSL模块

1、找到之前php安装包,进入php-5.4.23/ext/opensll

2、#/php/bin/phpize

3、#./configure --with-openssl --with-php-config=/usr/local/php/bin/php-config

  #make

  #make install

 技术分享

4、找到php.ini文件进行编辑,添加openssl.so文件;

  #vim php.ini

  extension=/usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/openssl.so

  如图所示:

  技术分享

5、重启php-pfm进程;

  #/usr/local/php/sbin/php-fpm

6、安装时出现错误解决方法

  1)出现没有发现config.m4 ,把ext/opensll目录下的config0.m4修改成config.m4即可;

    #mv config0.m4 config.m4

  2)出现configure: error: Cannot find OpenSSL’s <evp.h>错误提示时,使用下面命令进行安装;

   #yum install openssl openssl-devel


php日志出现此错误时Unable to find the wrapper "https" - did you forget to enable it when you co,请按照上面的方法进行安装,即可解决问题;

本文出自 “一起成长” 博客,请务必保留此出处http://1243047.blog.51cto.com/1233047/1846466

以上是关于Linux下php安装openSSL模块的主要内容,如果未能解决你的问题,请参考以下文章

Centos 7(Linux)环境下安装PHP(编译添加)相应动态扩展模块so(以openssl.so为例)

linux环境下不编译php增加open ssl扩展

linux环境下安装PHP的OpenSSL扩展

Linux下PHP添加openssl扩展

linux环境php.ini已开启openssl但phpinfo里没有

php怎么开启openssl模块