问题描述: 正常运行的服务第二天启动突然报了om.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException错误,整个注册中心的服务都不能正常运行。
解决方案: 将application.yml文件中的端口改为其他端口启动,成功启动再改回来就好了。查看了端口占用情况,未发现有占用,出现原因还挺匪夷所思,不过按照这个思路是可以解决的。
server:
port: 8765 #要改动的端口地方
eureka:
instance:
hostname: 127.0.0.1
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
补充:如果一开始就不能启动服务,一般检查yml文件配置是否正确,可参考下面的配置。其次查看pom.xml文件的引用是否正确,注册中心参看如下,其他的服务生产者、消费者等启动不了原因基本上就这样,可自行检查。
@SpringBootApplication
@EnableEurekaServer
public class EurekaApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaApplication.class, args);
}
}
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
网友评论