Git下载head插件报错:fatal: remote error: The unauthenticated git protocol on port 9418

报错信息:

Cloning into 'elasticsearch-head'...
fatal: remote error:
  The unauthenticated git protocol on port 9418 is no longer supported.

翻译:

克隆到“elasticsearch-head”……

致命:远程错误:

9418端口上的未认证的git协议不再被支持。

解决方案:

上网找了很多解决方法,包括

git config --global url."https://".insteadOf git://

都没有解决问题

这个方式直接导致

fatal: unable to access 'https://github.com/mininet/mininet.git/': 
gnutls_handshake() failed: Error in the pull function.

所以,这个方法不得行。

后来

再次切换root用户,再次输入命令就好了

git clone git://github.com/mobz/elasticsearch-head.git

 


版权声明:本文为AriesLY0411原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。