前言
准备工作
需要先将服务器端时间同步
linux设置时间同步
提前在网站上下载node_exporter、prometheus并传输到服务器中
https://prometheus.io/download
关闭firewall、selinux
[root@localhost ~]# iptables -F #关闭防火墙
[root@localhost ~]# setenforce 0 #临时关闭selinux
试验环境
服务器版本:centos7
prometheus部署服务器地址:192.168.1.10
grafana部署服务器地址:192.168.1.10
prometheus架构图
一、node_exporter安装部署
用于机器系统的信息收集
[root@node ~]# cd /home/samba/ #进入共享目录
[root@node samba]# tar xf node_exporter-1.4.0-rc.0.linux-amd64.tar.gz #解压node_exporter
[root@node samba]# mv node_exporter-1.4.0-rc.0.linux-amd64 /usr/local/node_exporter #复制到指定文件夹
[root@node prometheus]# cd /usr/local/node_exporter/
[root@node node_exporter]# ./node_exporter #开启
[root@node node_exporter]# cp node_exporter /usr/local/bin/
[root@node node_exporter]# vi /usr/lib/systemd/system/node_exporter.service #设置成服务
[Unit]
Description=Prometheus Monitoring System
Documentation=Prometheus Monitoring System
[Service]
ExecStart=/usr/local/bin/node_exporter
[Install]
WantedBy=multi-user.target
[root@node node_exporter]# systemctl daemon-reload #重新加载服务
[root@node node_exporter]# systemctl start node_exporter #启动node_exporte服务
二、prometheus安装部署
[root@node ~]# cd /home/samba/ #进入共享目录
[root@node samba]# tar xf prometheus-2.38.0.linux-amd64.tar.gz #解压prometheus
[root@node samba]# mv prometheus-2.38.0.linux-amd64 /usr/local/prometheus #复制到指定文件夹
[root@node /]# vi /usr/local/prometheus/prometheus.yml
- targets: ["192.168.1.10:9100"] #改名本机地址加端口
[root@node samba]# cd /usr/local/prometheus/
[root@node prometheus]# ./prometheus & #开启
http://192.168.1.10:9090 #输入地址进行查看
查看监控目标(目前就设置了本机,状态显示正常)
三、grafana安装部署
[root@node /]# wget https://dl.grafana.com/enterprise/release/grafana-enterprise-9.0.0-1.x86_64.rpm #在https://grafana.com/grafana/download查看要下载的版本
[root@node /]# yum install grafana-enterprise-9.0.0-1.x86_64.rpm -y
[root@node /]# systemctl start grafana-server #启动grafana-server服务
[root@node /]# grafana-cli admin reset-admin-password abcd.1234 #安装完毕后报错密码。修改admin的密码为abcd.1234
http://192.168.1.10:3000 #输入本机地址
配置数据源
由于prometheus、grafana都部署在一台虚拟机中,会默认显示出来,直接保存
添加仪表板(可以自行设置,也可以去https://grafana.com/grafana/dashboards查找模板)
本次选择已有模板(9276)
呈现效果
四、总结
1、本次安装问题
最开始安装完毕后,打开网站报错,时间一致。同步服务器时间后恢复正常。
Warning: Error fetching server time: Detected 54093.915999889374 seconds time difference between your browser and the server. Prometheus relies on accurate time and time drift might cause unexpected query results.
2、其他命令
[root@node ~]# pkill prometheus #结束prometheus进程
[root@node ~]# ss -nltup | grep 9090 #prometheus一般使用端口9090,查看是否在使用
3、其他模板记录
监控物理机、虚拟机(linux)grafana模板: 9276
监控物理机、虚拟机(win)grafana模板: 10467 10171 2129
监控容器grafana模板:3146 8685 8588 315