JHipster マイクロサービス アーキテクチャの場合、AuthServer という名前の UAA サーバーを Docker コンテナで実行し、Jhipster レジストリを別のコンテナで実行します。
Docker コンテナーは、同じユーザー ブリッジ ネットワーク構成で実行されます。
レジストリが同じコンテナーにないため、application.yml ファイルで jhipster-registry マシンに接続するように UAA サーバーを構成しました。
eureka:
instance:
prefer-ip-address: true
client:
service-url:
defaultZone: http://admin:${jhipster.registry.password}@jhipster-registry:8761/eureka/
同じように、bootstrap.yml ファイルでこれを使用しました。
spring:
cloud:
config:
fail-fast: true
retry:
initial-interval: 1000
max-interval: 2000
max-attempts: 100
uri: http://admin:${jhipster.registry.password}@jhipster-registry:8761/config
そして最後に、docker-compose ファイルで、私も使用しました
version: '3.3'
services:
authserver-app:
image: authserver
environment:
- _JAVA_OPTIONS=-Xmx512m -Xms256m
- SPRING_PROFILES_ACTIVE=prod,swagger
- EUREKA_CLIENT_SERVICE_URL_DEFAULTZONE=http://admin:$${jhipster.registry.password}@jhipster-registry:8761/eureka
- SPRING_CLOUD_CONFIG_URI=http://admin:$${jhipster.registry.password}@jhipster-registry:8761/config
- SPRING_DATASOURCE_URL=jdbc:postgresql://authserver-postgresql:5432/AuthServer
- JHIPSTER_SLEEP=10 # gives time for the JHipster Registry to boot before the application
しかし、アプリケーション AuthServer を起動すると、localhost に接続しようとし続けます。
authserver-app_1 | 2019-01-04 18:07:39.134 DEBUG 1 --- [ restartedMain] c.n.d.s.r.aws.ConfigClusterResolver : Config resolved to [AwsEndpoint{ serviceUrl='http://admin:admin@localhost:8761/eureka/', region='us-east-1', zone='defaultZone'}]
authserver-app_1 | 2019-01-04 18:07:39.141 DEBUG 1 --- [ restartedMain] c.n.d.s.r.a.ZoneAffinityClusterResolver : Local zone=defaultZone; resolved to: [AwsEndpoint{ serviceUrl='http://admin:admin@localhost:8761/eureka/', region='us-east-1', zone='defaultZone'}]
localhost に関するこの構成はどこから来て、どうすれば修正できますか?