- 修改prometheus的默认端口
-
- 进入prometheus目录,编辑prometheus.yml文件
-
- 在prometheus.yml路径中,运行命令
#启动prometheus
./prometheus --config.file=prometheus.yml --web.listen-address=:8001 &
- 修改grafana的默认端口
-
- 安装完grafana后,修改grafana配置文件
#进入grafana配置文件路径
vi /etc/grafana/grafaba.ini
# 查找 port
/port
-
- 编辑完后保存退出
- 启动grafana服务
systemctl start grafana-server
- 设置Linux开启启动
编辑文件/etc/rc.d/rc.local,将开机需要运行的命令添加到文件末尾
prometheus修改启动端口:
1、配置文件修改,prometheus.yml修改配置参数
static_configs: - targets: ['localhost:9090']
2、启动命令添加端口
./prometheus --config.file=prometheus.yml --web.listen-address=:9093