zoukankan      html  css  js  c++  java
  • OPENSSL问题,使用fsockopen()函数提示错误

    环境配置

    系统环境 CentOS7.2
    WDCP v3.2.2 lanmp

    PHP 多版本 指定使用5.6

    OpenSSL 1.0.2h  3 May 2016

    php.ini相关设置
    allow_url_fopen = On
    allow_url_include = On
    openssl.cafile= /www/wdlinux/nginx/conf/cert/cacert.pem  (后来下载OPENSSL证书放上的)

    问题描述

    PHP程序中使用

    1. $matches = parse_url($url);
    2. $host = $matches['host'];
    3. $path = $matches['path'] ? $matches['path'].($matches['query'] ? '?'.$matches['query'] : '') : '/';
    4.         $transports = '';
    5.         if($matches['scheme'] == 'https') { //判断是否使用HTTPS
    6.             $transports = 'ssl://';  //如使用HTTPS则使用SSL协议
    7.             $port = !empty($matches['port']) ? $matches['port'] : 443; //如使用HTTPS端口使用443
    8.         } else {
    9.             $transports = 'tcp://'; //如没有使用HTTPS则使用tcp协议
    10.             $port = !empty($matches['port']) ? $matches['port'] : 80;//如没有使用HTTPS则使用80端口
    11.         }
    12. $fp = @fsockopen(($transports . $host), $port, $errno, $errstr, $timeout);
    复制代码



    其中此PHP文件运行无效果,生成error_log信息如下

    1. <?php exit;?>05-12 20:40:12 | 2 | fsockopen(): SSL operation failed with code 1. OpenSSL Error messages:
    2. error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed | ../client.class.php | 395
    3. <?php exit;?>05-12 20:40:12 | 2 | fsockopen(): Failed to enable crypto | ../client.class.php | 395
    4. <?php exit;?>05-12 20:40:12 | 2 | fsockopen(): unable to connect to ssl://www.xxx.net:443 (Unknown error) | p../client.class.php | 395
    复制代码




    395行就是以上代码中的 $fp = @fsockopen(($transports . $host), $port, $errno, $errstr, $timeout);

    百度很多资料,没找到相关PHP报错的资料,找到一些E文网站,大约是说没有下载openssl根证书,于是更具资料提示下载OpenSSL根证书,并在php.ini设置OPENSSL证书位置,还是不能正常运行,报以上错误,估计是OPENSSL环境配置的问题,请admin指点

    我百度了一些错误关键词
    OpenSSL Error messages:error:14090086
    SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed 
    Failed to enable crypto
    好像都是说关于openssl根证书的问题,大神能帮看下如何解决吗

    经过三天的摸索和查找资料,现在我已确定问题所在
    此问题和wdcp无关,和php版本以及openssl相关

    主要是因为php在5.6版本(包含5.6)以后的所有版本中如使用fsockopen() 或file_get_content()函数获取https站点的信息,OPENSSL会验证对方站点的SSL证书颁发机构是否可信,如果没有下载openssl根证书并在php.ini中设置openssl根证书路径,就会造成无法验证对方网站SSL证书是否可信,就无法使用上述两个函数获取到内容同时生成PHP警告信息,php5.6以前的老版本中此验证功能是没有开启或者说是没有作用的。所以php5.6以前的版本不存在此问题!
    OpenSSL Error messages:error:14090086
    SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed 
    Failed to enable crypto

    特在此说明原因,同时希望我这两天的折腾对以后遇到同样问题的朋友有所帮助少走弯路

  • 相关阅读:
    (2.3)备份与还原--事务的运行模式与处理机制
    (2.2)备份与还原--备份类型与恢复模式、备份介质
    (2.1)备份与还原--sql server文件的概念及操作
    (1.3.3)权限控制
    (1.3.2)登录验证(加密连接与登录验证)
    (1.3.1)连接安全(连接实例与网络协议及TDS端点)
    static class
    cnblog
    microsoft
    C# socket android
  • 原文地址:https://www.cnblogs.com/kenshinobiy/p/7441813.html
Copyright © 2011-2022 走看看