安装好 prometheus 以后,访问的默认端口号是 9090,通常不需要修改。但有时候情况特殊,需要把默认端口号改为自定义端口,例如改为 8091,该如何操作?
一般情况,prometheus 有两种安装运行方式:容器方式和虚机(服务器)方式,更改方法不同,简述如下:
一、容器方式
prometheus 在容器中安装运行,启动方式通常是:
docker run -d -p 9090:9090 \
-v $PWD/prometheus.yml:/etc/prometheus/prometheus.yml \
-v $PWD/alert.rules:/etc/prometheus/alert.rules \
--name prometheus \
prom/prometheus \
-config.file=/etc/prometheus/prometheus.yml \
-alertmanager.url=http://10.0.2.15:9093
因此,要自定义端口号,启动时直接更改 -p 后面的端口参数就可以了,简单直接。
二、虚机(服务器)方式
prometheus 在虚机(服务器)中安装运行。
命令行启动
在安装完成以后,可以直接在命令行启动。启动方式通常是:
./prometheus --config.file=prometheus.yml &
或者
nohup /opt/prometheus/prometheus &
如果要使用不同于9090的端口号,可以在命令行参数 --web.listen-address中指定,如:
./prometheus --config.file=prometheus.yml --web.listen-address=:8091 &
启动以后,访问http://xxx.xxx.xxx.xxx:8091,可以看到,端口确实更改了。
顺便说一下,要看prometheus的所有命令行参数,可以执行如下命令:
./prometheus -h