AWS SES certificate verify failed

后端 未结 4 1369
独厮守ぢ
独厮守ぢ 2021-02-06 18:37

I have set up SES successfully on one AWS instance. Now I am trying to use it on a second (not cloned) instance and when I run any of the SES scripts, I get an error:

         


        
相关标签:
4条回答
  • 2021-02-06 19:04

    Disable verification of SSL peers and retry.

    export PERL_LWP_SSL_VERIFY_HOSTNAME=0

    0 讨论(0)
  • 2021-02-06 19:15

    try to remove (or rename) this directory:

    /usr/local/share/perl
    
    0 讨论(0)
  • 2021-02-06 19:28

    For some reason, your OpenSSL does not get the intermediate certificate. (Outdated software?)

    Install the intermediate certificate with the subject hash 0xeb99629b, available at https://knowledge.verisign.com/support/ssl-certificates-support/index?page=content&actp=CROSSLINK&id=AR1513.

    You can use it with the -CAfile parameter in OpenSSL tools and with the environment variable HTTPS_CA_FILE for the Perl HTTPS stack. To use it system-wide, place it in the appropriate ca-certificates directory, e.g. /etc/ssl/certs, and c_rehash the directory.

    0 讨论(0)
  • 2021-02-06 19:30

    Take a look at https://bugzilla.redhat.com/show_bug.cgi?id=705044

    This might have something to do with it.

    0 讨论(0)
提交回复
热议问题