fatal: unable to access 'https://xxxxx': SSL connect error
/**********************************************************************
* fatal: unable to access 'https://xxxxx': SSL connect error
* 说明:
* VPS中采用CentOS 6系统,git版本太低,使用最新版本,结果SSL有问题。
*
* 2018-7-9 深圳 宝安西乡 曾剑锋
*********************************************************************/ 一、参考文档:
. centos6. 下出现fatal unable to access ssl connect error
https://segmentfault.com/q/1010000015049502 二、解决办法:
yum update -y nss curl libcurl
fatal: unable to access 'https://xxxxx': SSL connect error的更多相关文章
- fatal: unable to access 'https://github.com/xxxxx/xxxx.git/': Failed to connect to github.com port 443: Timed out
		今天使用git push的时候提示"fatal: unable to access 'https://github.com/xxxxx/xxxx.git/': Failed to conne ... 
- github FATAL:unable to access 'https://github.com/...: Failed to connect to github.com:443; No error
		今天整理github,初次使用,很多都不懂,所以遇到了克隆失败的问题,研究了大半天,后来..... 打开Git Bash,克隆已有工程到本地: $ git clone https://github.c ... 
- 使用SSH连接解决git报错:fatal: unable to access 'https://github.com/xxx/xxx.github.io.git/': Proxy CONNECT aborted
		TL;DRs 这个错误的原因和HTTPS的代理配置有关,使用SSH方式连接可以避免这一问题 最近git pull和push的时候总是报错 fatal: unable to access 'https: ... 
- git error:【fatal: unable to access 'https://github.com/userId/prjName.git/': err or setting certificate verify locations:】
		$ git pull origin master fatal: unable to access 'https://github.com/userId/prjName.git/': err or se ... 
- remote: Permission to user_name/Code.git denied to other_user_name. fatal: unable to access 'https://github.com/user_name/Code.git/': The requested URL returned error: 403
		Error msg: $ git push remote: Permission to xxx/Code.git denied to xxxxxx. fatal: unable to access ' ... 
- fatal: unable to access 'https://github.com/open-falcon/falcon-plus.git/': Peer reports incompatible or unsupported protocol version
		git通过git clone下载github上的资源到机器上,结果出现如题所示的错误. [root@server data]# git clone https://github.com/pingcap ... 
- git同步遇到报错“fatal: unable to access 'https://github.com/lizhong24/mysite2.git/': Peer reports incompatible or unsupported protocol version.”
		git同步遇到报错“fatal: unable to access 'https://github.com/lizhong24/mysite2.git/': Peer reports incompat ... 
- 下载安装go插件包报错fatal: unable to access 'https://github.com/golang/tools.git/': OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
		使用git命令来给vscode安装go插件的时候报错,如下: $ git clone https://github.com/golang/tools.git tools Cloning into 't ... 
- fatal: unable to access 'https://github.com/Homebrew/homebrew-core/'
		LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54 安装curl "https://nodejs.org/dist/latest/node-${VE ... 
随机推荐
- MVC的前端和后端的Model Binding
			1.前端提交JSON 字符串 {"id":13,"title":"这里是标题33","day":"2018-8 ... 
- hashlib 库
			hashlib 库 hash 是一种算法,用来接收一系列数据,经过计算后得到一个hash值 hash值的三大特征: 1. 如果传入的数据一样,得到的hash值一样 2. 只要采用的hash算法固定,无 ... 
- coursera国际法笔记 持续更新
			LECTURE ONE International crime court(ICC) came into being after the Second World War. The Nuremberg ... 
- 尚学堂java 答案解析 第四章
			本答案为本人个人编辑,仅供参考,如果读者发现,请私信本人或在下方评论,提醒本人修改 一.选择题 1.BD 解析:B:类必须有构造方法,若程序未写,这系统自动调用系统构造方法. D:super()会调用 ... 
- bzoj1045
			题解: 随便推一下公式 然后发现是中位数 代码: #include<bits/stdc++.h> using namespace std; ],n; long long sum; int ... 
- day12-python的类
			类的一般形式: 创建类我们一般用class关键字来创建一个类,class后面跟类名字,可以自定义,最后以冒号结尾,如下所示: class ClassName: '''类的说明''' 类的内容 类的内容 ... 
- markdown语法模板
			(GitHub-Flavored) Markdown Editor Basic useful feature list: Ctrl+S / Cmd+S to save the file Ctrl+Sh ... 
- 【原创】paintEvent()函数显示文本
			[代码] void MainWindow::paintEvent(QPaintEvent*) { QPainter p(this); QRect r; p.setPen(Qt::red); p.dra ... 
- 使用RxSwift 实现登录页面的条件绑定
			我们在使用MVC建构进行开发时,对登录页面用户名密码等进行的处理一般是这样的,点击登录按钮判断用户框以及密码框输入的合法性,用一堆if真是屎一般!或者用textfield的代理来进行响应其实也是屎一般 ... 
- pdf及word文档的读取 pyPDF2,docx
			#!python3 #-*- coding:utf8 -*- #PyPDF2可能会打不开某些pdf文档,也不能提取图片,图表或者其他媒介从PDF文件中.但是它能提取文本从PDF中,转化为字符. imp ... 
