dial tcp 34.64.4.113:443: connectex: A connection attempt failed because the connected party did not

  • 一、问题
  • 二、分析

一、问题

go build 创建项目,拉取go第三方扩展包的时候报如下错误:

dial tcp 34.64.4.113:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

在这里插入图片描述

二、分析

查看 GOSUMDB 的配置

go env

dial tcp 34.64.4.113:443: connectex: A connection attempt failed because the connected party did not_第1张图片

最后是因为set GOSUMDB=sum.golang.org

把它关掉

go env -w GOSUMDB=off

代理推荐

go env -w GOPROXY=https://goproxy.cn,direct

再次执行命令 go build,成功~

你可能感兴趣的:(#,Go,attemptfailed,attempt,dialtcp)