0
点赞
收藏
分享

微信扫一扫

Connection to https://dl-ssl.google.com refused的解决办法

佛贝鲁先生 2022-10-24 阅读 141

使用SDK Manager.exe安装Android开发环境的时候会遇到:

Fetching ​​https://dl-ssl.google.com/android/repository/addons_list-2.xml​​​
Failed to fetch URL ​​​https://dl-ssl.google.com/android/repository/addons_list-2.xml​​, reason:Connection to ​​https://dl-ssl.google.com​​ refused Fetched Add-ons List successfully
Fetching URL: ​​​https://dl-ssl.google.com/android/repository/repository-8.xml​​​
Failed to fetch URL ​​​https://dl-ssl.google.com/android/repository/repository-8.xml​​, reason: HttpHostConnect Connection to ​​https://dl-ssl.google.com​​ refused


这个问题需要修改一下host文件:


方法如下:

  • 用notepad打开C:\WINDOWS\system32\drivers\etc中的hosts文件
  • 在最后一行添加74.125.237.1 dl-ssl.google.com
  • 成功解决问题。
  • 如果仍然是refused,在cmd打开的dos窗口,执行命令ping dl-ssl.google.com,如果ping不通,则使用ping –t dl-ssl.google.com,等到可以ping通了再安装

补充:
74.125.237.1 dl-ssl.google.com的来源:

C:\Users\test>ping dl-ssl.google.com

正在 Ping dl-ssl.google.com [74.125.237.1] 具有 32 字节的数据:
来自 74.125.237.1 的回复: 字节=32 时间=104ms TTL=46
来自 74.125.237.1 的回复: 字节=32 时间=102ms TTL=46
来自 74.125.237.1 的回复: 字节=32 时间=104ms TTL=46



举报

相关推荐

0 条评论