我是靠谱客的博主 年轻火,最近开发中收集的这篇文章主要介绍已解决:出现了自己签名的证书。 错误: 证书通用名 “www.doctorcom.com” 与所要求的主机名 “raw.githubusercontent.com” 不符。1、问题描述2、问题分析3、问题解决,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、问题描述

搭建K8S集群时,需要部署flannel网络,部署此网络需要下载kube-flannel.yaml文件,通过wget下载此文件时报如下错误:

[root@k8s-node01 plugin]# wget https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
--2021-12-15 12:11:29--  https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
正在解析主机 raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.76.133
正在连接 raw.githubusercontent.com (raw.githubusercontent.com)|151.101.76.133|:443... 已连接。
错误: 无法验证 raw.githubusercontent.com 的由 “/C=CN/ST=GD/L=Guangzhou/O=Dr.COM SSL/OU=2066/CN=www.doctorcom.com/emailAddress=mars@doctorcom.com” 颁发的证书:
  出现了自己签名的证书。
    错误: 证书通用名 “www.doctorcom.com” 与所要求的主机名 “raw.githubusercontent.com” 不符。
要以不安全的方式连接至 raw.githubusercontent.com,使用“--no-check-certificate”。

2、问题分析

/etc/hosts文件中已经添加了如下内容,但是连接此地址的时候需要安全认证。所以下载命令中添加免认证参数即可。

151.101.76.133 raw.githubusercontent.com

3、问题解决

wget --no-check-certificate https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml

[root@k8s-node01 plugin]# wget --no-check-certificate https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
--2021-12-15 12:12:13--  https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
正在解析主机 raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.76.133
正在连接 raw.githubusercontent.com (raw.githubusercontent.com)|151.101.76.133|:443... 已连接。
警告: 无法验证 raw.githubusercontent.com 的由 “/C=CN/ST=GD/L=Guangzhou/O=Dr.COM SSL/OU=2066/CN=www.doctorcom.com/emailAddress=mars@doctorcom.com” 颁发的证书:
  出现了自己签名的证书。
    警告: 证书通用名 “www.doctorcom.com” 与所要求的主机名 “raw.githubusercontent.com” 不符。
已发出 HTTP 请求,正在等待回应... 302 Moved Temporarily
位置:http://10.0.0.3/chkuser?url=raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml [跟随至新的 URL]
--2021-12-15 12:12:13--  http://10.0.0.3/chkuser?url=raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
正在连接 10.0.0.3:80... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:4008 (3.9K) [text/html]
正在保存至: “kube-flannel.yml”

100%[=====================================================================================>] 4,008       --.-K/s 用时 0.03s   

2021-12-15 12:12:13 (129 KB/s) - 已保存 “kube-flannel.yml” [4008/4008])

最后

以上就是年轻火为你收集整理的已解决:出现了自己签名的证书。 错误: 证书通用名 “www.doctorcom.com” 与所要求的主机名 “raw.githubusercontent.com” 不符。1、问题描述2、问题分析3、问题解决的全部内容,希望文章能够帮你解决已解决:出现了自己签名的证书。 错误: 证书通用名 “www.doctorcom.com” 与所要求的主机名 “raw.githubusercontent.com” 不符。1、问题描述2、问题分析3、问题解决所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部