首页 > 其他 > 详细

prometheus更改默认端口

时间:2021-04-29 22:28:00      阅读:110      评论:0      收藏:0      [点我收藏+]

默认的9090改为9999:

  • 容器

docker run -d -p 9999:9090 \
            -v $PWD/prometheus.yml:/etc/prometheus/prometheus.yml \
            --name prometheus \
            prom/prometheus \

  • 二进制

安装包解压后直接启动,加上参数 --web.listen-address中指定:./prometheus --web.listen-address=:9999 

  • 自启动配置

[Unit]

Description=Prometheus

[Service]
ExecStart=/opt/prometheus  --config.file=/opt/prometheus.yml  --web.listen-address=:9999
[Install]
WantedBy=multi-user.target

prometheus更改默认端口

原文:https://www.cnblogs.com/jamespeng/p/14719298.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!