解决curl/wget: (7) Failed to connect to github.com port 443: Connection refused无法解析主机或请求拒绝问题

错误信息

curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
or
Temporary failure resolving '*.com'

其中 raw.githubusercontent.com 是此例中请求拒绝的域名

解决方案

1. 查看域名最快响应IP

点击链接搜索目标域名的IP结果

2. 在/etc/hosts文件添加域名信息

$ sudo vim /etc/hosts

移动到文件最后一行: G
新添加一行: o
复制ip地址 复制域名(对于此例新添加行为:199.232.68.133 raw.githubusercontent.com)
退出保存 :wq

你可能感兴趣的:(Linux,linux)