Git出现SSL connect error的解决办法

最近在使用Go开发项目中,因为需要安装一个Package,所以使用了go get命令 ,然后就出现git clone ... SSL connect error的错误:

出现这种错误有可能是nss的版本太低了,需要更新安装下nss,然后使用linux yum安装

安装好后,再次执行相关命令,错误解决.

原文地址:https://www.cnblogs.com/itxiongwei/p/9125077.html

时间: 2024-08-30 01:07:39

Git出现SSL connect error的解决办法的相关文章

FW 执行Git命令时出现各种 SSL certificate problem 的解决办法

比如我在windows下用Git clone gitURL 就提示  SSL certificate problem: self signed certificate 这种问题,在windows下出现得频率高些.我估计主要是git本身就是基于linux开发的,在windows上,容易缺失一些环境. 参考了一些文章,解决方法其实就是“直接不管ssl证书的事儿”-_-||| 方法如下: 1.创建临时环境变量: windows上命令行输入: [plain] view plain copy set GI

使用adb命令报错:error: cannot connect to daemon解决办法

具体报错如下: C:\Users\xxxx>adb devices * daemon not running. starting it now on port 5037 * CreateProcess failure, error 2 * failed to start daemon * error: cannot connect to daemon 解决办法如下: 打开cmd命令窗口,输入adb nodaemon server 打开另一个cmd窗口,输入adb devices即可 原文地址:h

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 深圳 宝安西乡 曾剑锋 ******************************************

执行curl -sSL 提示curl: (35) SSL connect error

今天,添加容器节点报错,执行如下 curl -sSL https://shipyard-project.com/deploy| ACTION=node DISCOVERY=etcd://192.168.5.252:4001  bash -s 提示如下报错: curl: (35) SSL connect error 解决方法:升级网络安全服务即可. yum update nss

mysql数据库二进制初始化出现:170425 17:47:04 [ERROR] /application/mysql//bin/mysqld: unknown option '--skip-locking' 170425 17:47:04 [ERROR] Aborting 解决办法

[[email protected] mysql]# ./scripts/mysql_install_db --user=mysql --basedir=/application/mysql/ --datadir=/application/mysql/data/Installing MySQL system tables...170425 17:47:04 [ERROR] /application/mysql//bin/mysqld: unknown option '--skip-locking

【Linux】 curl: (35) SSL connect error问题处理 以及 Couldn't resolve host 问题处理

装服务的时候遇到如下情况SSL connect error: 问题原因: nss版本过旧 解决方法: yum -y update nss  更新一下就可以了 -------------------------------------------------------------------------------------------------------------------------------------------------------------------- 若再出现下面

[转]Git – fatal: Unable to create 'XXX/.git/index.lock’: File exists.的解决办法

参考资料: http://sheshui.me/articles/git-quickly-tutorial-20120517 http://stackoverflow.com/questions/9282632/git-index-lock-file-exists-when-i-try-to-commit-but-cannot-delete-the-file 我的说明: 我操作的是ubuntu环境.window远程 1 若在window下远程打开操作窗口(不是console),进入.git目录删

转载 git Unknown SSL protocol error in connection to github.com:443

1.执行命令:git pull –progress –no-rebase -v "origin",报错,如图1 fatal: unable to access 'https://github.com/shuijingwan/yii2-starter-kit.git/': Unknown SSL protocol error in connection to github.com:443 fatal: unable to access 'https://github.com/shuiji

SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null' 解决办法

当跑jndi项目时抛出:org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'异常 解决办法: 1.在Tomcat 6.0\lib下加入oracle驱动包ojdbc14_g-10.2.0.1.0.jar 2.在Tomcat 6.0\conf下的context.xml文件中加入 [javascript] view plaincopy <R