美文网首页
ERROR: SSL verification error

ERROR: SSL verification error

作者: 下班不写程序 | 来源:发表于2019-04-09 00:43 被阅读0次

    在安装CocoaPods出现了以下问题:

    ERROR: SSL verification error at depth 1: unable to get local issuer certificate (20)
    ERROR: You must add /C=IL/O=StartCom Ltd./OU=Secure Digital Certificate Signing/CN=StartCom Certification Authority to your local trusted store
    ERROR: SSL verification error at depth 2: self signed certificate in certificate chain (19)
    ERROR: Root certificate is not trusted (/C=US/O=GeoTrust Inc./CN=GeoTrust Global CA)

    出现这个问题的原因主要是Ruby环境所需版本需要更新了.

    更新Ruby环境

    1. 首先要安装Homebrew终端输入这条命令即可/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    2. 安装rvm$ curl -L get.rvm.io | bash -s stable
    3. 装载rvm$ source ~/.rvm/scripts/rvm
    4. 安装2.3.0版本ruby$ rvm install 2.3.0
    5. 将2.3.0设为默认$ rvm use 2.3.0 --default

    证书错误问题

    $ cd $rvm_path/usr/ssl
    $ sudo curl -O http://curl.haxx.se/ca/cacert.pem
    $ sudo mv cacert.pem cert.pem
    

    这样就解决了上面的error
    .End

    相关文章

      网友评论

          本文标题:ERROR: SSL verification error

          本文链接:https://www.haomeiwen.com/subject/klfviqtx.html