我在 Windows 环境(开发)上使用注册表版本 3.2.4 。
我想更改默认管理员密码。
根据我只需要在我的文件中定义的文档。security.user.password
application-*.yml
所以我central-config/application-dev.yml
成为
jhipster:
security:
authentication:
jwt:
secret: my-secret-token-to-change-in-production
registry:
password: admin123
我启动我的注册表java -jar jhipster-registry/jhipster-registry-3.2.4.war --spring.profiles.active=swagger,dev,native
(这里设置的参数--spring.profiles.active
只是为了确保我的配置文件正确加载)。
我尝试使用管理员用户连接http: //127.0.0.1 :8761/# /...但是我的新密码不起作用(只是默认的“管理员”密码仍然有效)。
当注册表启动时,我收到了这些警告
WARN 1152 --- [ main] c.n.c.sources.URLConfigurationSource : No URLs will be polled as dynamic configuration sources.
WARN 1152 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Bean with key 'zuulEndpoint' has been registered as an MBean but has no exposed attributes or operations
当我尝试连接时,这个警告
WARN 1152 --- [ XNIO-2 task-1] o.s.c.n.zuul.web.ZuulHandlerMapping : No routes found from RouteLocator
当我查看我的应用程序上的配置加载时,它看起来没问题 我的云配置
我尝试添加-e JHIPSTER_SECURITY_AUTHENTICATION_JWT_SECRET=my-secret-token-to-change-in-production
,-e SECURITY_USER_PASSWORD=admin123
当我启动我的注册表时,但仍然无法正常工作。
有任何想法吗?
谢谢