OpenSSL: unable to verify the first certificate for Experian URL

前端 未结 5 1273
一整个雨季
一整个雨季 2020-11-30 18:14

I am trying to verify an SSL connection to Experian in Ubuntu 10.10 with OpenSSL client.

openssl s_client -CApath /etc/ssl/certs/ -connect dm1.experian.com:         


        
5条回答
  •  孤城傲影
    2020-11-30 18:41

    I came across the same issue installing my signed certificate on an Amazon Elastic Load Balancer instance.

    All seemed find via a browser (Chrome) but accessing the site via my java client produced the exception javax.net.ssl.SSLPeerUnverifiedException

    What I had not done was provide a "certificate chain" file when installing my certificate on my ELB instance (see https://serverfault.com/questions/419432/install-ssl-on-amazon-elastic-load-balancer-with-godaddy-wildcard-certificate)

    We were only sent our signed public key from the signing authority so I had to create my own certificate chain file. Using my browser's certificate viewer panel I exported each certificate in the signing chain. (The order of the certificate chain in important, see https://forums.aws.amazon.com/message.jspa?messageID=222086)

提交回复
热议问题