I am using JHipster.
I have 3 different Apps. JHipster Registry instance JHipster Gateway instance JHipster Microservice instance
Whenever I change the following I get a 401 during startup of the Gateway and Microservice instances.
Change the Eureka client config:
eureka:
instance:
prefer-ip-address: true
client:
enabled: true
healthcheck:
enabled: true
registerWithEureka: true
fetchRegistry: true
serviceUrl:
defaultZone: http://admin:admin@localhost:8761/eureka/
Change the Eureka Server Config
security:
user:
name: admin
password: <better password>
role: USER,ADMIN
changing admin:admin to admin:
Does anyone know what I am doing wrong?