问题描述
我遇到了一个问题,我试图在 Docker 容器内运行 eureka 发现客户端-服务器(两者)。
客户端实例的状态 URL 显示随机字母数字 {hostname}。然而,该实例完美地在本地主机上运行。
我应该怎么做才能将此随机主机名更改为 localhost。
当我在 Docker 中运行时,我正在观察这个问题。
这是我的尤里卡服务器 application.properties
server.port=8761 spring.application.name=discovery-Service
eureka.client.register-with-eureka=false eureka.client.fetch-registry=false
management.endpoints.web.exposure.include=*
和实例 application.properties
server.port=8095
spring.application.name=Athena-Service
eureka.instance.lease-renewal-interval-in-seconds=1
eureka.instance.lease-expiration-duration-in-seconds=2
eureka.instance.instance-id=${spring.application.name}:${spring.application.instance_id:${random.value}}
eureka.instance.health-check-url=http://shubhamwanne.domain.name:${server.port}
eureka.client.serviceUrl.defaultZone=http://shubhamwanne.domain.name:8761/eureka
eureka.client.healthcheck.enabled=true
logging.level.com.self.springEurekaAthenaService.service=DEBUG
management.endpoints.web.exposure.include=*
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)