1. 程式人生 > 其它 >macOS安裝Homebrew報錯:Failed to connect to raw.githubusercontent.com port 443: Connection refused

macOS安裝Homebrew報錯:Failed to connect to raw.githubusercontent.com port 443: Connection refused

技術標籤:php後端

問題:macOS安裝Homebrew時總是報錯(Failed to connect to raw.githubusercontent.com port 443: Connection refused)

原因:由於某些你懂的因素,導致GitHub的raw.githubusercontent.com域名解析被汙染了。

解決辦法:通過修改hosts解決此問題。

查詢真實IP

https://www.ipaddress.com/查詢raw.githubusercontent.com的真實IP。

修改hosts

sudo vim /etc/hosts

新增如下內容:

199.232.28.133 raw.githubusercontent.com

轉自:https://blog.csdn.net/heroacool/article/details/102844367