错误描述:
 
$yaourt -S dropbox
y
 
curl: (60) SSL certificate problem: unable to get local issuer certificate
More details here: http://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.
 
大意应该是使用curl下载https网站文件时,证书出错了。
 
我的解决办法是:换成http链接进行下载 - -#
编辑PKGBUILD,将source中的https修改为http即可正常下载
 
 
 
以下是百度到的相关资料:
 
curl通过https下载的时候出错。
 
错误描述:
 
    Downloading RVM from wayneeseguin branch stable
 
    curl: (60) SSL certificate problem, verify that the CA cert is OK. Details:
    error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
    More details here: http://curl.haxx.se/docs/sslcerts.html    
 
    curl performs SSL certificate verification by default, using a “bundle”
    of Certificate Authority (CA) public keys (CA certs). The default
    bundle is named curl-ca-bundle.crt; 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.    
 
    Could not download ‘https://github.com/wayneeseguin/rvm/tarball/stable’.
      Make sure your certificates are up to date as described above.
      To continue in insecure mode run ‘echo insecure >> ~/.curlrc’.
 
经过原因查找,在验证证书的时候出现问题,是本地ssl判别证书太旧,导致报ssl证书错误
 
下载新的ssl本地判别文件
 
    wget http://curl.haxx.se/ca/cacert.pem
 
并更名为ca-bundle.crt放置到默认目录
 
     mv cacert.pem ca-bundle.crt  | mv ca-bundle.crt /etc/pki/tls/certs/
 
或者curl  –cacert cacert.pem 方式指定调用

转载于:https://www.cnblogs.com/tonykong/archive/2012/06/28/2568586.html

yaourt下载安装dropbox提示curl ssl证书错误相关推荐

  1. 使用 Let's Encrypt 为 Zimbra-8.8.15 安装可信任的SSL证书

    上一篇我们已经安装好了 Zimbra-8.8.15 ,但是登录网页版的时候会提示证书错误,在忽略证书错误以及25端口已经解封的情况下就已经可以正常的收发邮件了,但是一直提示证书错误很不友好,给人不安全 ...

  2. Centos7.0安装 Lets encrypt 的SSL证书

    Centos7.0安装 Lets encrypt 的SSL证书 本文链接:https://blog.csdn.net/yangshuai518/article/details/99951202 1.安 ...

  3. android开发下载安装app提示未安装应用

    出现的情况是通过usb可以安装,然后用androidStudio运行生成的apk,发送出去,下载安装,提示未安装应用: 问题如图: 解决过程:在百度上看一些方案,不一致呢,问了问别人,通过正确的打包方 ...

  4. QWebEngineView如何忽略SSL证书错误

    最近用QT写客户端软件,思路是使用QWebEngineView来绘制本地的html或者服务器上的html做界面展示.可是发现QWebEngineView在Load一个https的URL的时候,由于ss ...

  5. 如何修复过期的中间SSL证书错误?

    整个证书生命周期内,SSL 证书在后台运行,保护着敏感数据免受网络不法分子的侵害.但有时候,用户会遇到烦人的SSL证书错误,则需要立即修复. 大多数 SSL 问题都与服务器端相关,一般是证书配置错误或 ...

  6. (转)python requests 高级用法 -- 包括SSL 证书错误的解决方案

    (转)python requests 高级用法 -- 包括SSL 证书错误的解决方案 参考文章: (1)(转)python requests 高级用法 -- 包括SSL 证书错误的解决方案 (2)ht ...

  7. python3发送https请求_关于python 3.x:如何在不引起python3的SSL证书错误的情况下将POST请求发送到https...

    事情是这样的,我一直在尝试从python内部将POST请求发送到LOGIN到我的大学wifi页面,但是却收到SSL证书错误. POST请求在chrome的POSTMAN扩展中可以正常工作. 这是我使用 ...

  8. 宝塔开放php openssl,宝塔面板安装第三方插件 Encryption365™ SSL 证书宝塔客户端 – 可以申请IP证书...

    这个插件是基于宝塔面板和环智中诚 SSL 数字证书 API 开发的自动申请.验证.安装.过期检测.证书续期(更新)插件客户端.免费SSL证书可在单本证书内保护高达 1000 条域名. 因为宝塔的免费证 ...

  9. Linux系统下安装minio并设置SSL证书进行HTTPS远程连接访问

    下载minio并且设置权限 创建一个文件夹用于保存下载的minio mkdir /usr/local/minio 在创建的文件夹中用wget下载Linux版本的minio服务端 wget https: ...

最新文章

  1. Dropbox用户数增速恢复:突破5亿 9个月增加1亿
  2. Redis (一)Redis简介、安装部署
  3. 2021MIT博士pluskid年终总结
  4. python源码精要(2)-C代码规范
  5. 第一个JDK 10(18.3)候选版本(内部版本43)展示了新的版本控制方案
  6. 【C++grammar】析构、友元、拷贝构造函数、深浅拷贝
  7. 《盘点那些秀你一脸的秒天秒地算法》(1)
  8. 树莓派摄像头_Arducam 8MP重磅来袭,为树莓派4B构建完全同步的双摄像头方案~
  9. import java.io6_JavaIO(六) 转换流
  10. 字典树实现_trie 字典树的实现方法
  11. 第十四章----面向对象equals和toString的重写
  12. 大数据各组件默认端口
  13. 7-5 删除字符串中的子串 (20 分)
  14. python 流程控制基础知识总结 和九九乘法表、质数、水仙花数、猜拳游戏练习
  15. 关系型数据库的基本知识
  16. ffmpeg摄像头采集h264编码RTP发送
  17. hdu 1109 Run Away
  18. [数据分析与可视化] Python绘制数据地图2-GeoPandas地图可视化
  19. 虚拟机中 win10 和 Win11 Edge和Chrome 浏览器中设置与快捷菜单字体模糊问题
  20. 工业4.0的概念及关键要素价值分析

热门文章

  1. Web服务生存周期内发生的事件/Soap扩展的阶段/Soap扩展的步骤
  2. java guava 使用_使用Guava操作基本类型
  3. vs工具箱里面没有工具怎么办_装机技巧系列(一):用U盘制作自己的PE工具箱...
  4. 麦吉尔大学 计算机科学和阿尔伯特,阿尔伯特大学怎么样?
  5. 发邮件请领导审批文件怎么说_住建部:1月1日起,两项甲级资质实行告知承诺审批!...
  6. 查询成绩最好的前两名_官宣!CPA考试成绩查询时间+合格标准+查询入口+成绩复核!注会考生查分前不看亏大了...
  7. 如何做到免驱打印_证卡打印机云打印方案
  8. python线程暂停_在python中暂停一个线程和另一个线程
  9. 3-18pytorch与矩阵分解PCA
  10. Python机器学习:梯度下降法003线性回归中的梯度下降法