Spring Boot Actuator Health Returning DOWN

后端 未结 12 1210
面向向阳花
面向向阳花 2021-01-31 02:49

When I access the /health endpoint from my Spring Boot application (1.2.4.RELEASE) it is returning a status of DOWN:

{
    status: \"DO         


        
12条回答
  •  灰色年华
    2021-01-31 03:00

    As per this link : https://github.com/indrabasak/spring-consul-example/blob/master/client/README.md, we should strictly used below properties to avoid below error.

    management.security.enabled=false
    management.health.consul.enabled=false
    

提交回复
热议问题