1. 程式人生 > >[轉發]解決 git push Failed to connect to 127.0.0.1 port 45463: 拒絕連接

[轉發]解決 git push Failed to connect to 127.0.0.1 port 45463: 拒絕連接

pre host 導致 占用 span www. git push github con

使用Github pull 代碼突然報錯:

Failed to connect to 127.0.0.1 port 43421: Connection refused

使用 lsof 發現端口未被占用:lsof -i:45463

查看代理:env|grep -i proxy

NO_PROXY=localhost,127.0.0.0/8,::1

http_proxy=http://127.0.0.1:45463/

HTTPS_PROXY=http://127.0.0.1:45463/

https_proxy=http://127.0.0.1:45463/

no_proxy=localhost,127.0.0.0/8,::1

HTTP_PROXY=http://127.0.0.1:45463/

原因:使用代理導致訪問失敗

解決方法:(取消代理使用)
export http_proxy=""

 export https_proxy=""
 export HTTP_PROXY=""
 export HTTPS_PROXY=""



原文:http://www.cnblogs.com/LoTGu/p/7782661.html

[轉發]解決 git push Failed to connect to 127.0.0.1 port 45463: 拒絕連接