当前位置: 代码迷 >> 综合 >> git设置代理后出现 Failed to connect to 127.0.0.1 port 1080: Connection refused
  详细解决方案

git设置代理后出现 Failed to connect to 127.0.0.1 port 1080: Connection refused

热度:46   发布时间:2023-12-21 12:23:09.0

笔者之前使用shadowsocks代理后,搁置一段时间未用,突然发现在git时报错Failed to connect to 127.0.0.1 port 1080: Connection refused。困扰了笔者很长时间,总结一下解决办法:

一:检查ubantu网络设置下的网络代理是否打开

 让其置于None并应用全局,而不是Manual。

如果此时还不是能git,继续接下来的步骤

二:通过终端查询系统环境有没有使用代理

env|grep -I proxy

会出现http_proxy  fpt_proxy socks_proxy https_proxy

终端输入

unset http_proxy

unset fpt_proxy

unset socks_proxy

unset https_proxy

取消代理即可!!!重启电脑如果再次查询仍然有代理,在重复一遍第二步,再关机开机就大功告成啦!!!!

 

 

 

 

  相关解决方案