# 使用homebrew安装openResty,出现以下报错
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
Error: Failed to download resource “openresty-openssl111–patch”
Download failed: https://raw.githubusercontent.com/openresty/openresty/master/patches/openssl-1.1.1f-sess_set_get_cb_yield.patch
使用homebrew安装OpenResty
安装OpenResty失败原因如下
错误代码如下,显示不能访问raw.githubusercontent.com
。
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
原因如下:在访问raw.githubusercontent.com
的时候,本地浏览器和系统都没有该网站的缓存。DNS解析该域名的过程如下
本地浏览器缓存 -> 系统浏览器缓存 -> hosts文件 -> DNS系统
通过以上报错得知:系统下载OpenResty需要从raw.githubusercontent.com
获取资源。但是我们访问DNS系统的过程中是存在问题的。安装失败
解决方案
通过链接raw.githubusercontent.com.ipaddress.com
获取网站的ip:199.232.68.133
打开本地hosts
文件
vi /etc/hosts
在文件下添加
199.232.68.133 raw.githubusercontent.com
这时候,http在访问raw.githubusercontent.com
的过程中就访问DNS,而是直接从hosts文件中获取到源站的资源。加快系统的访问速度。
以上问题是本人参照 自己动手搭建HTTP实验环境 遇到的问题