美文网首页
brew遇到证书过期等问题

brew遇到证书过期等问题

作者: testerzhang | 来源:发表于2022-06-08 09:55 被阅读0次

问题1

brew 安装软件的时候提示:

fatal: 无法访问 'https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git/':SSL certificate problem: certificate has expired

临时解决

$ git config --global http.sslVerify false

问题2

brew 安装软件的时候提示:

curl: (60) SSL certificate problem: certificate has expired
More details here: https://curl.haxx.se/docs/sslcerts.html

curl performs SSL certificate verification by default, using a "bundle"
 of Certificate Authority (CA) public keys (CA certs). If the default
 bundle file isn't adequate, you can specify an alternate file
 using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
 the bundle, the certificate verification probably failed due to a
 problem with the certificate (it might be expired, or the name might
 not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
 the -k (or --insecure) option.
HTTPS-proxy has similar options --proxy-cacert and --proxy-insecure.
Trying a mirror...

解决

$ echo insecure >> ~/.curlrc
$ export HOMEBREW_CURLRC=1

然后再安装


欢迎关注我的同名公众号,原创技术文章第一时间推送。
如果你有遇到Linux系统或者其他技术问题,也可以付费协助解决。

相关文章

  • brew遇到证书过期等问题

    问题1 brew 安装软件的时候提示: 临时解决 问题2 brew 安装软件的时候提示: 解决 然后再安装 欢迎关...

  • 数字证书

    原文链接 前言 日常工作中,偶尔会遇到证书相关的问题,比如浏览器提示证书不可信、证书过期等。实际上,我们访问大多数...

  • 2016年2月17号苹果证书过期引起的app不能发布问题的解决

    1.如题,如果你遇到了上面的问题。只需要打开钥匙串>显示>显示过期证书,删掉那些过期的证书。注意,在钥匙串访问中点...

  • iOS开发xcode常见错误解析,如配置证书问题 上架报错问题,

    真机测试,上架时都需要配置证书,证书的配置及使用过程中经常会会出现一些问题,像证书过期等,下面我会总结一下,我遇到...

  • 证书过期问题

    一:推送证书过期 1.登录到苹果开发者账号https://developer.apple.com/account/...

  • Git

    常见问题与具体解决办法 证书过期

  • Xcode企业打包遇到的各种问题

    今天打包遇到一个奇葩问题: 显示的问题是企业证书过期,但是怎么找钥匙串里面的证书都是好的吖。 此处纠结了一下午 解...

  • 常见SSL错误解决办法

    在访问部署了ssl证书的网站过程中,往往由于证书的兼容性、证书配置、证书过期等多种原因提示SSL证书错误,这里给大...

  • php获取https证书详细信息,过期时间

    可用于检测https证书是否过期,用于域名证书的过期提醒等等

  • 证书制作

    突然间 证书过期 推送证书也过期了。最重要的是证书和描述文件过期不影响线上app 因为证书 描述文件只是指定了某台...

网友评论

      本文标题:brew遇到证书过期等问题

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