3

我正在尝试为 jhipster-registry 使用预打包的 v3.0.3 战争文件。我使用这些命令行属性启动它,试图将它指向我的 Git 存储库以获取配置信息:

jhipster-registry-3.0.3.war --spring.profiles.active=prod,cust1 \
--spring.cloud.config.server.git.uri=http://myserver/url/MyConfig \
--spring.cloud.config.server.git.username=user \
--spring.cloud.config.server.git.password=pass

它开始了,但我总是收到这个错误:

Your JWT secret key is not set up, you will not be able to log into the JHipster

我已经尝试了许多如何设置 Git 存储库的组合。我正在使用来自https://github.com/jhipster/jhipster-registry-sample-config的示例 application.yml 文件

jhipster-registry 本身是否不会从 Git 读取任何配置文件?

如果我想配置 jhipster-registry 属性,我应该继续覆盖命令行上的内容,还是将 yml 文件放在某个地方?当它是预构建的战争文件并且嵌入了引导程序/应用程序 yml 文件时,我不清楚配置它的正确方法。

有没有办法打开调试日志,这样我就可以看到发生了什么?

4

1 回答 1

3

这是因为您的 JWT 令牌未在您的 Git 存储库中配置。查看我们的示例 Git 存储库。Registry 会将此令牌发送给所有已配置的应用程序,从而能够连接到它们。

否则,它会显示警告,因为它知道这将在以后成为问题。

请注意,这与默认情况下不受保护的“经典”Eureka 和 Spring Cloud Config 服务器不同。

于 2017-06-24T06:09:29.887 回答