安装git后,我收到以下错误: git clone: fatal: Unable to find remote helper for 'https‘
我点击了这个链接:"Unable to find remote helper for 'https'" during git clone
并尝试了以下方法:
$ yum install curl-devel
$ # cd to wherever the source for git is
$ cd /usr/local/src/git-1.7.9
$ ./configure
$ make
$ make install我收到以下错误:证书/usr/share/rhn/RHNS-CA-CERT已过期。
想法??
发布于 2014-11-25 14:45:48
您的SSL证书已过期。将其替换为有效的。
rm /usr/share/rhn/RHNS-CA-CERT
wget -P /usr/share/rhn http://f.cl.ly/items/1B19031O2E0m1k3E2n3u/RHNS-CA-CERT另外,更新Red Hat网络包
yum -y update rhn*发布于 2017-01-02 08:54:19
在Oracle Linux上也可能发生这种情况,在这种情况下,您可以简单地绕过ULN/RHN yum插件,从公共存储库获取最新的rhn-client-tools。
yum update rhn-client-tools --nopluginshttps://stackoverflow.com/questions/27119741
复制相似问题