docker启动Prometheus报错

问题背景

docker启动Prometheus,想要热加载 alertmanager 的配置文件,所以开启配置 web.enable-lifecycle

启动命令

docker run -p 9090:9090 -v /opt/docker_dir/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml -v /opt/docker_dir/prometheus/rules/:/usr/local/prometheus/rules/  bitnami/prometheus --web.enable-lifecycle

报错信息

ts=2024-05-31T07:58:02.927Z caller=main.go:521 level=error msg="Error loading config (--config.file=prometheus.yml)" file=/opt/bitnami/prometheus/prometheus.yml err="open prometheus.yml: no such file or directory"

ts=2024-05-31T07:58:02.927Z caller=main.go:521 level=error msg="Error loading config (--config.file=prometheus.yml)" file=/opt/bitnami/prometheus/prometheus.yml err="open prometheus.yml: no such file or directory"

问题分析

--config.file=prometheus.yml 表示想通过这种方式加载配置文件,但是找不到。猜测虽然我们前面已经通过映射加入配置文件,但是加入--web.enable-lifecycle参数后,可能会先自动检查--config.file=有没有值,检查没有运行命令这个配置项,所以报错

解决办法

再在后面加入--config.file这个配置

docker run -p 9090:9090 -v /opt/docker_dir/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml -v /opt/docker_dir/prometheus/rules/:/usr/local/prometheus/rules/  bitnami/prometheus --web.enable-lifecycle --config.file=/etc/prometheus/prometheus.yml

运行成功

  • 9
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值