Eureka Client启动后自动停止的问题

在本地部署了一个Eureka Server的服务,端口为9199,相关yaml配置文件如下:

server:
  port: 9199
spring:
  application:
    name: eureka-server
eureka:
  instance:
    hostname: localhost
  client:
    register-with-eureka: false
    fetch-registry: false
  server:
    enable-self-preservation: true
    renewal-percent-threshold: 0.85

另外再启动一个Eureka Client的客户端服务,并且注册到上面的Eureka Server,名为User-Service。然后发现,启动这个服务后就会马上停止,并且日志如下

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v2.4.3)

2021-02-19 15:55:11.273  INFO 10924 --- [           main] com.spd.lern.UserServiceApplication      : Starting UserServiceApplication using Java 1.8.0_231 on DESKTOP-XXXXXXX with PID 10924 (D:\workspace\workspace_for_java\SPB-LERN\User-Service\target\classes started by xxx in D:\workspace\workspace_for_java\SPB-LERN\User-Service)
2021-02-19 15:55:11.277  INFO 10924 --- [           main] com.spd.lern.UserServiceApplication      : No active profile set, falling back to default profiles: default
2021-02-19 15:55:11.906  INFO 10924 --- [           main] o.s.cloud.context.scope.GenericScope     : BeanFactory id=b433b9db-5c1d-3137-978a-248d09aea5a9
2021-02-19 15:55:13.288  INFO 10924 --- [           main] o.s.cloud.commons.util.InetUtils         : Cannot determine local hostname
2021-02-19 15:55:13.327  INFO 10924 --- [           main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2021-02-19 15:55:14.474  INFO 10924 --- [           main] o.s.cloud.commons.util.InetUtils         : Cannot determine local hostname
2021-02-19 15:55:14.528  WARN 10924 --- [           main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2021-02-19 15:55:14.605  INFO 10924 --- [           main] o.s.c.n.eureka.InstanceInfoFactory       : Setting initial instance status as: STARTING
2021-02-19 15:55:14.648  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Initializing Eureka in region us-east-1
2021-02-19 15:55:14.653  INFO 10924 --- [           main] c.n.d.s.r.aws.ConfigClusterResolver      : Resolving eureka endpoints via configuration
2021-02-19 15:55:14.747  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Disable delta property : false
2021-02-19 15:55:14.747  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Single vip registry refresh property : null
2021-02-19 15:55:14.747  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Force full registry fetch : false
2021-02-19 15:55:14.748  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Application is null : false
2021-02-19 15:55:14.748  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Registered Applications size is zero : true
2021-02-19 15:55:14.748  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Application version is -1: true
2021-02-19 15:55:14.748  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Getting all instance registry info from the eureka server
2021-02-19 15:55:14.908  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : The response status is 200
2021-02-19 15:55:14.911  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Starting heartbeat executor: renew interval is: 30
2021-02-19 15:55:14.913  INFO 10924 --- [           main] c.n.discovery.InstanceInfoReplicator     : InstanceInfoReplicator onDemand update allowed rate per min is 4
2021-02-19 15:55:14.919  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Discovery Client initialized at timestamp 1613721314918 with initial instances count: 1
2021-02-19 15:55:14.920  INFO 10924 --- [           main] o.s.c.n.e.s.EurekaServiceRegistry        : Registering application USER-SERVICE with eureka with status UP
2021-02-19 15:55:14.920  INFO 10924 --- [           main] com.netflix.discovery.DiscoveryClient    : Saw local status change event StatusChangeEvent [timestamp=1613721314920, current=UP, previous=STARTING]
2021-02-19 15:55:14.922  INFO 10924 --- [nfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_USER-SERVICE/localhost:user-service:9023: registering service...
2021-02-19 15:55:14.938  INFO 10924 --- [           main] com.spd.lern.UserServiceApplication      : Started UserServiceApplication in 5.304 seconds (JVM running for 6.087)
2021-02-19 15:55:14.944  INFO 10924 --- [extShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry        : Unregistering application USER-SERVICE with eureka with status DOWN
2021-02-19 15:55:14.944  INFO 10924 --- [extShutdownHook] com.netflix.discovery.DiscoveryClient    : Saw local status change event StatusChangeEvent [timestamp=1613721314944, current=DOWN, previous=UP]
2021-02-19 15:55:14.949  INFO 10924 --- [extShutdownHook] com.netflix.discovery.DiscoveryClient    : Shutting down DiscoveryClient ...
2021-02-19 15:55:14.981  INFO 10924 --- [nfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_USER-SERVICE/localhost:user-service:9023 - registration status: 204
2021-02-19 15:55:14.982  INFO 10924 --- [nfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_USER-SERVICE/localhost:user-service:9023: registering service...
2021-02-19 15:55:14.996  INFO 10924 --- [nfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_USER-SERVICE/localhost:user-service:9023 - registration status: 204
2021-02-19 15:55:14.998  INFO 10924 --- [extShutdownHook] com.netflix.discovery.DiscoveryClient    : Unregistering ...
2021-02-19 15:55:15.001  INFO 10924 --- [extShutdownHook] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_USER-SERVICE/localhost:user-service:9023 - deregister  status: 200
2021-02-19 15:55:15.006  INFO 10924 --- [extShutdownHook] com.netflix.discovery.DiscoveryClient    : Completed shut down of DiscoveryClient
Disconnected from the target VM, address: '127.0.0.1:55666', transport: 'socket'

Process finished with exit code 0

经过一番排查(baidu)后,发现是由于缺少了web的相关依赖导致。后再在pom.xml中添加web相关依赖:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

之后便能正常启动User-Service,启动日志如下:

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v2.4.3)

2021-02-19 16:00:59.839  INFO 8704 --- [           main] com.spd.lern.UserServiceApplication      : Starting UserServiceApplication using Java 1.8.0_231 on DESKTOP-XXXXXXX with PID 8704 (D:\workspace\workspace_for_java\SPB-LERN\User-Service\target\classes started by xxx in D:\workspace\workspace_for_java\SPB-LERN\User-Service)
2021-02-19 16:00:59.842  INFO 8704 --- [           main] com.spd.lern.UserServiceApplication      : No active profile set, falling back to default profiles: default
2021-02-19 16:01:00.662  INFO 8704 --- [           main] o.s.cloud.context.scope.GenericScope     : BeanFactory id=4ff32662-75df-35cb-86dd-6dff8742a425
2021-02-19 16:01:00.968  INFO 8704 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 9023 (http)
2021-02-19 16:01:00.977  INFO 8704 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2021-02-19 16:01:00.978  INFO 8704 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.43]
2021-02-19 16:01:01.081  INFO 8704 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2021-02-19 16:01:01.081  INFO 8704 --- [           main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1176 ms
2021-02-19 16:01:01.258  INFO 8704 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'
2021-02-19 16:01:02.555  INFO 8704 --- [           main] o.s.cloud.commons.util.InetUtils         : Cannot determine local hostname
2021-02-19 16:01:02.598  INFO 8704 --- [           main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2021-02-19 16:01:03.862  INFO 8704 --- [           main] o.s.cloud.commons.util.InetUtils         : Cannot determine local hostname
2021-02-19 16:01:03.907  WARN 8704 --- [           main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2021-02-19 16:01:03.984  INFO 8704 --- [           main] o.s.c.n.eureka.InstanceInfoFactory       : Setting initial instance status as: STARTING
2021-02-19 16:01:04.017  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Initializing Eureka in region us-east-1
2021-02-19 16:01:04.022  INFO 8704 --- [           main] c.n.d.s.r.aws.ConfigClusterResolver      : Resolving eureka endpoints via configuration
2021-02-19 16:01:04.113  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Disable delta property : false
2021-02-19 16:01:04.113  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Single vip registry refresh property : null
2021-02-19 16:01:04.113  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Force full registry fetch : false
2021-02-19 16:01:04.113  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Application is null : false
2021-02-19 16:01:04.113  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Registered Applications size is zero : true
2021-02-19 16:01:04.113  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Application version is -1: true
2021-02-19 16:01:04.114  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Getting all instance registry info from the eureka server
2021-02-19 16:01:04.272  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : The response status is 200
2021-02-19 16:01:04.274  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Starting heartbeat executor: renew interval is: 30
2021-02-19 16:01:04.277  INFO 8704 --- [           main] c.n.discovery.InstanceInfoReplicator     : InstanceInfoReplicator onDemand update allowed rate per min is 4
2021-02-19 16:01:04.282  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Discovery Client initialized at timestamp 1613721664281 with initial instances count: 0
2021-02-19 16:01:04.283  INFO 8704 --- [           main] o.s.c.n.e.s.EurekaServiceRegistry        : Registering application USER-SERVICE with eureka with status UP
2021-02-19 16:01:04.283  INFO 8704 --- [           main] com.netflix.discovery.DiscoveryClient    : Saw local status change event StatusChangeEvent [timestamp=1613721664283, current=UP, previous=STARTING]
2021-02-19 16:01:04.285  INFO 8704 --- [nfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_USER-SERVICE/localhost:user-service:9023: registering service...
2021-02-19 16:01:04.311  INFO 8704 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 9023 (http) with context path ''
2021-02-19 16:01:04.312  INFO 8704 --- [           main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 9023
2021-02-19 16:01:04.337  INFO 8704 --- [nfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_USER-SERVICE/localhost:user-service:9023 - registration status: 204
2021-02-19 16:01:05.427  INFO 8704 --- [           main] o.s.cloud.commons.util.InetUtils         : Cannot determine local hostname
2021-02-19 16:01:05.452  INFO 8704 --- [           main] com.spd.lern.UserServiceApplication      : Started UserServiceApplication in 7.27 seconds (JVM running for 8.04)

并且在Eureka中成功注册,如下图:


Eureka注册中心
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 225,165评论 6 523
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 96,476评论 3 405
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 172,446评论 0 368
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 61,157评论 1 301
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 70,164评论 6 400
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 53,615评论 1 316
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 41,969评论 3 430
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 40,959评论 0 279
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 47,495评论 1 324
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 39,529评论 3 347
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 41,641评论 1 355
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 37,233评论 5 351
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 42,976评论 3 340
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 33,407评论 0 25
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 34,552评论 1 277
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 50,218评论 3 381
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 46,715评论 2 366

推荐阅读更多精彩内容