Eureka报错笔记
Eureka报错
概述
分享一个eureka的错误及解决方案,话不多说上代码
org.apache.http.conn.ConnectTimeoutException:
Connect to eureka7001.com:7001 timed out
com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException:
Connection refused: connect
com.netflix.discovery.shared.transport.TransportException:
Cannot execute request on any known server
解决方案,修改C:\Windows\System32\drivers\etc下的host文件
具体操作,点击电脑左下角搜索框,搜索记事本,选择管理员身份运行。点击文件——》打开——》找到C:\Windows\System32\drivers\etc下的host文件,添加属性
127.0.0.1 eureka7001.com
127.0.0.1 eureka7002.com
点击保存。这个时候只能另存。不过没关系。保存为host.txt文件后。将原本的host文件删除。修改host.txt的后缀名。把txt干掉即可。如果不显示文件后缀名可参考
https://jingyan.baidu.com/article/7c6fb428f01e8c80642c90e0.html
ps:第二天运行报错了检查一下host文件。我的电脑关机之后,修改的内容被清空了