maven failed: Connection refused: connect
时间: 2023-10-20 07:36:16 浏览: 314
引用: [ERROR] Failed to execute goal com.spotify:dockerfile-maven-plugin:1.4.7:build (default) on project security-api: Could not build image: java.util.concurrent.ExecutionException: com.spotify.docker.client.shaded.javax.ws.rs.ProcessingException: com.spotify.docker.client.shaded.org.apache.http.conn.HttpHostConnectException: Connect to localhost:2375 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused: connect -> [Help 1] 解决方案: Go to docker settings (Second mouse click on docker icon, click settings)Click on checkbox ‘Expose daemon on tcp://localhost:2375 without TLS’Apply & RestartRun again: mvn clean install 。 引用:解决方法: 设置成正常代理可以。具体方法可以下载一个代理工具。只要IE配置成能直接访问http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.pom 表示能正常下载了。 配置 <proxy> <active>true</active> <protocol>http</protocol> <host>127.0.0.1</host> <port>8282</port> <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts> </proxy> 关键的 <host>127.0.0.1</host> <port>8282</port> 只要与你的ie代理客户端 配置一致就可以。 。 引用: dl.google.com/203.208.43.99, dl.google.com/203.208.43.97, dl.google.com/203.208.43.104, dl.google.com/203.208.43.101, dl.google.com/203.208.43.102] failed: Connection refused: connect > Connection ...。 问题:请告诉我,maven failed: Connection refused: connect
这个错误提示表明在执行maven命令时出现了连接被拒绝的问题。可能的解决方案包括:
1. 检查Docker设置,确保"Expose daemon on tcp://localhost:2375 without TLS"的复选框已被选中,并重启Docker。然后再次运行mvn clean install命令。
2. 可以尝试设置代理。具体方法是下载一个代理工具,并配置IE使其能够直接访问http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.pom。在IE的代理配置中,设置 <proxy> <active>true</active> <protocol>http</protocol> <host>127.0.0.1</host> <port>8282</port> <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts> </proxy> ,其中关键的是 <host>127.0.0.1</host> <port>8282</port> ,确保与IE代理客户端的配置一致。然后再次运行mvn clean install命令。
请根据具体情况尝试这些解决方案,并检查是否能够解决maven连接被拒绝的问题。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
阅读全文