在安装的时候,出现了ERROR: The certificate of `xxxxx’ is not trusted.(xxxx为某个网站)

出现这个的原因是该网站的证书不被信任。

解决办法如下:

CentOS系统
yum install -y ca-certificates
Debian/Ubuntu系统
apt-get install -y ca-certificates

使用wget出现以下错误

wget https://github.com/mozilla/geckodriver/releases/download/v0.31.0/geckodriver-v0.31.0-linux64.tar.gz

 

解决方案如下

wget –no-check-certificate  https://github.com/mozilla/geckodriver/releases/download/v0.31.0/geckodriver-v0.31.0-linux64.tar.gz

1 对 “解决类似ERROR: The certificate of `xxx.com’ is not trusted.的问题”的想法;

  1. 神秘的软件包:CA-Certificates

    前提条件:
    操作系统:CentOS6+/Debian7+/Ubuntu12+

    1、以root账户登陆,防止系统过于精简,先更新系统软件源 :
    Shell
    yum update -y
    # CentOS系统 用这个

    apt-get update -y
    # Debian/Ubuntu系统 用这个
    1
    2
    3
    4
    5

    yum update -y
    # CentOS系统 用这个

    apt-get update -y
    # Debian/Ubuntu系统 用这个

    2、安装CA-Certificates
    Shell
    yum install -y ca-certificates
    # CentOS系统 用这个

    apt-get install -y ca-certificates
    # Debian/Ubuntu系统 用这个
    1
    2
    3
    4
    5

    yum install -y ca-certificates
    # CentOS系统 用这个
     
    apt-get install -y ca-certificates
    # Debian/Ubuntu系统 用这个

    3、安装结束,再次下载文件测试:

发表评论

您的电子邮箱地址不会被公开。