Curl error (60): SSL peer certificate or SSH remote key was not OK for https://update.cs2c.com.cn/NS/V10/V10SP2/os/adv/lic/base/x86_64/repodata/repomd.xml [SSL: no alternative certificate subject name matches target host name 'update.cs2c.com.cn']

简介: 【10月更文挑战第30天】在尝试从麒麟软件仓库(ks10-adv-os)下载元数据时,遇到 SSL 证书验证问题。错误提示为:`Curl error (60): SSL peer certificate or SSH remote key was not OK`。可能原因包括证书不被信任、证书与域名不匹配或网络问题。解决方法包括检查网络连接、导入 SSL 证书、禁用 SSL 证书验证(不推荐)、联系仓库管理员、检查系统时间和尝试其他镜像。

报错解决
这个错误信息表明在尝试从麒麟软件的仓库(ks10-adv-os)下载元数据时,遇到了 SSL 证书验证问题。具体来说,错误提示是:

Curl error (60): SSL peer certificate or SSH remote key was not OK for https://update.cs2c.com.cn/NS/V10/V10SP2/os/adv/lic/base/x86_64/repodata/repomd.xml
[SSL: no alternative certificate subject name matches target host name 'update.cs2c.com.cn']
这通常意味着以下几种情况之一:

SSL 证书不被信任:服务器提供的 SSL 证书不被你的系统信任。这可能是因为证书是自签名的,或者证书不在系统的受信任证书存储中。

证书与域名不匹配:服务器提供的 SSL 证书的域名与请求的域名不匹配。

网络问题:网络连接问题可能导致无法正确验证 SSL 证书。

要解决这个问题,你可以尝试以下步骤:

  1. 检查网络连接
    确保你的系统可以正常访问 update.cs2c.com.cn。你可以尝试使用 ping 或 curl 命令来测试连接:

bash
ping update.cs2c.com.cn
curl -I https://update.cs2c.com.cn

  1. 导入 SSL 证书
    如果证书不被信任,你可能需要手动将 SSL 证书导入到系统的受信任证书存储中。这通常需要管理员权限。

  2. 禁用 SSL 证书验证(不推荐)
    作为一种临时解决方案,你可以在 yum 配置中禁用 SSL 证书验证。这不是推荐的做法,因为它会降低安全性,但可以作为临时措施来解决问题:

bash
sudo yum --disablerepo=ks10-adv-os install some-package
或者,在 /etc/yum.conf 或仓库配置文件中添加:

bash
sslverify=0
请注意,这种方法会禁用 SSL 证书验证,可能会使你的系统面临中间人攻击的风险。

  1. 联系仓库管理员
    如果问题持续存在,你可能需要联系仓库管理员或麒麟软件的技术支持,以获取更多帮助。

  2. 检查系统时间
    确保你的系统时间是准确的,因为 SSL 证书验证可能会因为时间不同步而失败。

  3. 尝试其他镜像
    如果问题是由于特定镜像的问题,尝试更换到其他镜像可能会有所帮助。

目录
相关文章
|
XML Shell Linux
python内置模块(random、os、sys、shelve、configparser、xml)
python内置模块(random、os、sys、shelve、configparser、xml)
83 0
Glide Caused by: javax.net.ssl.SSLPeerUnverifiedException: Hostname not verified:
Glide Caused by: javax.net.ssl.SSLPeerUnverifiedException: Hostname not verified:
|
5月前
|
Kubernetes jenkins 网络安全
Jenkins Pipeline 流水线 - 使用代理节点,Remote SSH 对 K8S 进行升级
Jenkins Pipeline 流水线 - 使用代理节点,Remote SSH 对 K8S 进行升级
61 0
|
网络协议 Ubuntu Linux
VSCode使用Remote SSH远程连接Linux服务器【远程开发】
VSCode使用Remote SSH远程连接Linux服务器【远程开发】
|
7月前
|
网络安全
ssh: Could not resolve hostname centos02: Temporary failure in name resolution
ssh: Could not resolve hostname centos02: Temporary failure in name resolution
577 0
|
8月前
|
网络安全
ssh(Spring+Spring mvc+hibernate)——applicationContext.xml
ssh(Spring+Spring mvc+hibernate)——applicationContext.xml
|
8月前
|
XML Java 数据格式
javaweb实训第五天下午——xml配置文件约束报错问题
问题描述: 如果电脑连不上网,或者网速不好可能会造成Spring框架中xml配置文件出现错误。但是这个错误不影响项目的运行的;
67 0
|
Ubuntu 网络安全 开发工具
[vscode] --- vscode remote ssh远程登陆设置
[vscode] --- vscode remote ssh远程登陆设置
330 0
[vscode] --- vscode remote ssh远程登陆设置
|
网络协议 Ubuntu Linux
VSCode使用Remote SSH远程连接Linux服务器【远程开发】
VSCode使用Remote SSH远程连接Linux服务器【远程开发】
|
4月前
|
监控 安全 搜索推荐
设置 HTTPS 协议以确保数据传输的安全性
设置 HTTPS 协议以确保数据传输的安全性

热门文章

最新文章