ubuntu中解决Failed to connect to 127.0.0.1 port xxxxx: Connection refused
方法一
查看一下代理
-
git config --global http.proxy
-
git config --global https.proxy
有就取消,没有就换一种方法
-
git config --global --unset http.proxy
-
git config --global --unset https.proxy
方法二
查看系统环境有没有使用代理
env|grep -I proxy
出现以下类似的配置
如果有相应的代理存在就取消掉
-
unset http_proxy