git clone:SSL: no alternative certificate subject name matches target host name

这篇具有很好参考价值的文章主要介绍了git clone:SSL: no alternative certificate subject name matches target host name。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

git clone 时的常见错误:文章来源地址https://www.toymoban.com/news/detail-770128.html

  1. fatal: unable to access ‘https://ip_or_domain/xx/xx.git/’: SSL: no alternative certificate subject name matches target host name ‘ip_or_domain’
    ssl: no alternative certificate subject name matches target host name 'githu,Git(xx-xuxin),git,ssl,网络协议
    解决办法: disable ssl verify
git config --global http.sslVerify false
  1. remote: HTTP Basic: Access denied
    remote: You must use a personal access token with ‘read_repository’ or ‘write_repository’ scope for Git over HTTP.
    remote: You can generate one at https://ip_or_domain/profile/personal_access_tokens
    fatal: Authentication failed for ‘https://ip_or_domain/xxx/xxx.git/’
    ssl: no alternative certificate subject name matches target host name 'githu,Git(xx-xuxin),git,ssl,网络协议
    解决办法:生成access token
    按提示进入 https://ip_or_domain/profile/personal_access_tokens ip_or_domain 是你具体项目的地址
    ssl: no alternative certificate subject name matches target host name 'githu,Git(xx-xuxin),git,ssl,网络协议
    git clone 时,需要输入密码的地方, 输入你生成的 access token

到了这里,关于git clone:SSL: no alternative certificate subject name matches target host name的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • (Git)git clone报错——SSL certificate problem: self signed certificate

    克隆代码时报错 问题分析 提示信息为SSL认证失败,可以关闭SSL的认证。 公司bitbucket只支持https地址,需要client配置忽略https证书检验。 解决方法 在克隆前输入下边命令: 解决参考:https://blog.csdn.net/anniewhite/article/details/113790557

    2024年02月04日
    浏览(47)
  • Git Clone 报错 `SSL certificate problem: unable to get local issuer certificate`

    如果您在尝试克隆Git存储库时得到 “SSL certificate problem: unable to get local issuer certificate” 的错误,这意味着Git无法验证远程存储库的SSL证书。如果SSL证书是自签名的,或者SSL证书链有问题,就会发生这种情况。 想要修复这个错误,可以尝试以下解决方案: 一、 禁用SSL验证: 一般

    2024年02月07日
    浏览(57)
  • 【git clone error:no matching key exchange method found】

    拉起项目代码报错 git clone ssh://uidxxx@gerrit-xxxxxxxx Cloning into ‘xxxxx’… Unable to negotiate with xxx.xx.xxx.ip port xxxxx: no matching key exchange method found. Their offer: diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 fatal: Could not read from remote repository. //无法读取远程仓库 未找到匹配的密钥交换方法,不

    2024年02月12日
    浏览(44)
  • git -- SSL certificate problem

    新建一个仓库,在向里面上传文件时,出现SSL证书问题 这个问题是由于没有配置信任的服务器HTTPS验证。默认,cURL被设为不信任任何CAs,就是说,它不信任任何服务器验证。 只需配置下面命令即可解决:

    2024年02月16日
    浏览(38)
  • git clone 出现server certificate verification failed. CAfile: none CRLfile: none错误

    出现 “server certificate verification failed. CAfile: none CRLfile: none” 错误可能是因为 Git 无法验证服务器的 SSL 证书。可以尝试以下几种方法来解决这个问题: 确认网络连接是否正常,尝试重新执行 git clone 命令。 手动添加证书到 Git 的信任列表中。可以使用以下命令将证书添加到

    2024年02月13日
    浏览(38)
  • Git SSL certificate problem: unable to get local issuer certificate

    错误:     Push failed             Unable to access \\\'https://github.com/ttsin/gitTest.git/\\\': SSL certificate problem: unable to get local issuer certificate 你在远程访问GitHub时,出现 这个错误通常表示Git无法验证GitHub的SSL证书,因为缺少本地颁发机构(CA)的根证书。 方法一: 1. 更新Git的CA证书:

    2024年02月14日
    浏览(44)
  • ModuleNotFoundError: No module named ‘_ssl‘

    首先强调python版本与openssl版本关系一定要对应上,不然啥错误都能出 这个错误提示表明在您的 Python 环境中缺少  _ssl  模块,这可能是由于缺少 OpenSSL 库或者 Python 编译时未正确链接 OpenSSL 库导致的。 为了解决这个问题,您可以尝试以下几个步骤: 安装 OpenSSL: 首先,请确

    2024年02月08日
    浏览(63)
  • git clone 报SSL证书问题

    git命令下运行 git config --global http.sslVerify false 然后再进行重新clone代码  

    2024年02月10日
    浏览(41)
  • 【异常】调用SpringBoot接口时提示错误400 Bad Request No required SSL certificate was sent

    因为开放的接口是必须要双向认证,才能够调用成功的,因此会爆以上错误。 配置好客户端证书,就可以正常调用的了。 双向认证是指客户端和服务端互相验证对方身份的过程,确保通信双方的安全性。 客户端向服务端发送请求,请求中包含客户端证书。 服务端收到请求后

    2024年02月13日
    浏览(70)
  • 如何解决Python找不到ssl模块问题 No module named _ssl

    当时在linux服务器上搭建python时,配置虚拟环境,创建mkvirtualenv_django时出现No module named _ssl,一整天都没有解决,最后安装配置了openssl才解决掉,给自己做个笔记,也让朋友们少踩个坑!希望可以帮到你们! 解决方法: 1.下载openssl 2.解压并安装 3.创建openssl的软连接(很重要

    2024年02月03日
    浏览(53)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包