_ssl.c:503: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

pingtest服务运行过程中发现无法访问银联网址。并且报错 _ssl.c:503: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed) 
答调查发现部分python库没有安装, 并且OpenSLL版本过低。 
首先安装openssl 1.0.0e ,可以yum安装
yum install -y openssl.x86_64 openssl-devel.x86_64
然后安装python 模块。
 pip install -q pyOpenSSL==0.13 \
 pip install -q pyasn1==0.1.6 \
 pip install -q ndg-httpsclient==0.3.2 \
 pip install -q certifi==2015.04.28

你可能感兴趣的:(FAQ)