当前位置: 首页 > 知识库问答 >
问题:

Spring执行器更换主机

卫寒
2023-03-14

我正在尝试用Spring Boot管理服务器安装Spring执行器。在我的本地机器工作良好,但在openshift云我有一些问题...

d.c.b.a.c.r.ApplicationRegistrator       : Application registered itself as {id=93a4432e, name=orbe, managementUrl=http://localhost:8080/orbe, healthUrl=http://localhost:8080/orbe/status, serviceUrl=http://localhost:8080/orbe, statusInfo={}}}, source=http-api, metadata={}, info={}}
d.c.b.a.c.r.ApplicationRegistrator       : Application registered itself as {id=7068c1d1, name=orbe, managementUrl=http://orbe-api-334-ciunv:8080/orbe, healthUrl=http://orbe-api-334-ciunv:8080/orbe/status, serviceUrl=http://orbe-api-334-ciunv:8080/orbe, statusInfo={status=UNKNOWN, timestamp=1496071160897, details={}}, source=http-api, metadata={}, info={}}

拜托,有人能帮帮我吗?谢谢!

共有1个答案

尹凌龙
2023-03-14

我找到了解决方案,在application.yml中覆盖management-url:

spring:
  boot:
    admin:
      client:
        management-url: http://remote-docker-host:8080 #docker host

更新Spring boot 2.0:

spring:
  boot:
    admin:
      client:
        url: http://spring-boot-admin-server-url:8080
        instance:
          service-url: http://you-application-url:8080
 类似资料:
  • 我有一个Spring Boot应用程序,其中包括Spring Actuator在 我的配置是这样的 但是,当我尝试使用检查endpoint时,我的浏览器显示 在我的IntelliJ想法中,我可以看到执行器选项卡,它似乎在那里工作,但没有URL映射。有人能帮忙吗?

  • 我有一个使用spring Boot2的restful web应用程序,带有执行器和Spring Security性。 在进行一些测试时,我检查了/httptrace路径,并意识到主体返回为NULL。我很困惑为什么会出现这种情况,因为当我调试日志SecurityContextHolder.getContext().getAuthentication().getPrincipal()时,我得到了实现U

  • 我们在基础结构模型中有一个执行器健康检查示例,我们正在主服务中使用该示例(向包添加依赖项、@import类名等)。 通过添加后缀,我们了解了httpendpoint,以下是结果: 但我们希望以编程方式从java代码获取所有这些数据。我做了一些调查,但什么也没有发现。 有没有可能直接从代码中获取数据(/json)(不需要rest等)?

  • 本项目基于 element-ui 默认视觉风格搭建了。如果对视觉风格有额外的要求可以按照官方自定义主题指导。该方案是通过样式变量覆盖的方式。 样式覆盖 element-ui 的通用样式变量可能无法满足所有定制需求,你可以通过覆盖默认的组件样式的方式实现。 由于 element-ui 的样式我们是在全局引入的,所以你想在某个view里面覆盖它的样式就不能加 scoped,但你又想只覆盖这个页面的 e

  • 如何访问http://localhost:8081/Actuatorendpoint?

  • 我在应用程序中添加了Spring Boot执行器,但现在我想添加由执行器创建的新服务(/health/metrics..)在我大摇大摆的文件上。 我不知道如何配置执行器和大摇大摆。