【Linux】curl的时候报错: (56) Received HTTP code 503 from proxy after CONNECT解决
curl的时候报错: (56) Received HTTP code 503 from proxy after CONNECT
·
问题出现的场景:
输入: curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo
出现如下图error:
原因:
因为我之前设置了代理端口,在/etc/profile里面添加了下面几行代码,所以出现了代理问题。
export http_proxy="127.0.0.1:8118"
export https_proxy="127.0.0.1:8118"
export ftp_proxy="127.0.0.1:8118"
解决方法:
查看代理 env | grep -I proxy
tm_sh@ubuntu-sh:~$ env | grep -I proxy
http_proxy=127.0.0.1:8118
ftp_proxy=127.0.0.1:8118
https_proxy=127.0.0.1:8118
再依次输入:
$ unset https_proxy
$ unset http_proxy
$ unset ftp_proxy
再次输入: curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo
问题解决啦!
更多推荐
已为社区贡献1条内容
所有评论(0)