gpt4 book ai didi

http - 配置 Prometheus 使用非默认端口

转载 作者:可可西里 更新时间:2023-11-01 16:24:40 26 4
gpt4 key购买 nike

我想在端口 8080 而不是 9090(它的正常默认值)上安装 Prometheus。为此我编辑了/etc/systemd/system/prometheus.service包含这一行:

ExecStart=/usr/local/bin/prometheus \
--config.file=/etc/prometheus.yaml --web.enable-admin-api \
--web.listen-address=":8080"

即,我正在使用选项 --web.listen-address指定非默认端口。

但是,当我使用 systemctl start prometheus 启动 Prometheus(2.0 beta)时我收到此错误消息:

parse external URL "": invalid external URL "http://<myhost>:8080\"/"

那么我如何配置 Prometheus 以便我可以在 http://<myhost>:8080/ 访问它的 Web UI (而不是 http://<myhost>:9090 )?

最佳答案

引号是多余的。此行将起作用:

ExecStart=/usr/local/bin/prometheus \
--config.file=/etc/prometheus.yaml --web.enable-admin-api \
--web.listen-address=:8080

关于http - 配置 Prometheus 使用非默认端口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47414593/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com