JHipster Registry 无法获取日志文件
JHipster Registry cannot get logfile
我有一个 JHipster 单体应用程序 运行 成功地与 JHipster Registry 一起。一切都很好,我可以看到我的应用程序实例和所有指标。
但我在 Administration/Logs 选项卡下得到以下提示:
No available logfile.
Please check:
- if the microservice is up
- these properties are set:
- logging.path
- logging.file (to avoid using the same spring.log)
See:
- https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-endpoints.html
- https://docs.spring.io/spring-boot/docs/current/reference/html/howto-logging.html
404 状态响应 /management/logfile
如前所述,该服务是 运行,在 application-*.yml
中,日志记录设置为
logging.file: /opt/tomcat/logs/shorty.log
此文件的读取权限为所有人共享。
为什么我看不到日志文件的内容?我错过了什么吗?
好吧,我的 Spring Cloud Config
错了。我有额外的 logging.path
属性 集。
但这对于默认配置似乎没有必要。在 application.yaml
中为 JHipster Registry 删除它后,一切都像一个魅力。
我有一个 JHipster 单体应用程序 运行 成功地与 JHipster Registry 一起。一切都很好,我可以看到我的应用程序实例和所有指标。
但我在 Administration/Logs 选项卡下得到以下提示:
No available logfile.
Please check:
- if the microservice is up
- these properties are set:
- logging.path
- logging.file (to avoid using the same spring.log)
See:
- https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-endpoints.html
- https://docs.spring.io/spring-boot/docs/current/reference/html/howto-logging.html
404 状态响应 /management/logfile
如前所述,该服务是 运行,在 application-*.yml
中,日志记录设置为
logging.file: /opt/tomcat/logs/shorty.log
此文件的读取权限为所有人共享。 为什么我看不到日志文件的内容?我错过了什么吗?
好吧,我的 Spring Cloud Config
错了。我有额外的 logging.path
属性 集。
但这对于默认配置似乎没有必要。在 application.yaml
中为 JHipster Registry 删除它后,一切都像一个魅力。