配置文件中的正确语法,用于在单独的 VM 中部署 Jhipster Registry
Proper syntax in configuration files for deploying the Jhipster Registry in a separate VM
我 运行 Jhipster Registry 在一个单独的 VM 上,API 连接有问题。在将 Jhipster Registry 移动到另一个 VM 之前,一切正常。
配置文件的相关部分如下:
申请-prod.yml
instance:
prefer-ip-address: true
client:
service-url:
defaultZone: http://admin:${jhipster.registry.password}@10.202.25.166:8761/eureka/
bootstrap-prod.yml
cloud:
config:
fail-fast: true
retry:
initial-interval: 1000
max-interval: 2000
max-attempts: 100
uri: http://admin:${jhipster.registry.password}@10.202.25.166:8761/config
name: app
profile: prod
label: master
我预计我设置的 URI 值不正确,但我在使用 IP 时找不到 example/directions 与配置中的 "localhost"。当 API 在 VM 上启动时,最后的输出是 "No URLs will be polled as dynamic configuration sources."
我将 I added eureka.instance.ip-address: 10.202.25.166
添加到 application-prod.yml,它现在可以工作了
我 运行 Jhipster Registry 在一个单独的 VM 上,API 连接有问题。在将 Jhipster Registry 移动到另一个 VM 之前,一切正常。
配置文件的相关部分如下:
申请-prod.yml
instance:
prefer-ip-address: true
client:
service-url:
defaultZone: http://admin:${jhipster.registry.password}@10.202.25.166:8761/eureka/
bootstrap-prod.yml
cloud:
config:
fail-fast: true
retry:
initial-interval: 1000
max-interval: 2000
max-attempts: 100
uri: http://admin:${jhipster.registry.password}@10.202.25.166:8761/config
name: app
profile: prod
label: master
我预计我设置的 URI 值不正确,但我在使用 IP 时找不到 example/directions 与配置中的 "localhost"。当 API 在 VM 上启动时,最后的输出是 "No URLs will be polled as dynamic configuration sources."
我将 I added eureka.instance.ip-address: 10.202.25.166
添加到 application-prod.yml,它现在可以工作了