linux系统监控工具prometheus的安装以及监控mysql

prometheus

安装

复制代码
https://prometheus.io/download/

下载客户端和服务端以及需要监控的所有的包

服务端

复制代码
官网下载下载prometheus

tar -xf prometheus-2.47.2.linux-amd64.tar.gz -C /usr/local/
cd /usr/local/
mv prometheus-2.47.2.linux-amd64 prometheus
cd prometheus
./prometheus --config.file=prometheus.yml &     //启动prometheus

将Prometheus配置为systemd管理

vim /usr/lib/systemd/system/prometheus.service

[Unit]
Description=https://prometheus.io

[Service]
Restart=on-failure
ExecStart=/usr/local/prometheus/prometheus --config.file=/usr/local/prometheus/prometheus.yml --web.listen-address=:9090

[Install]                      
WantedBy=multi-user.target


systemctl daemon-reload
systemctl start prometheus

客户端

复制代码
官网下载安装node_exporter

tar -xf node_exporter-1.7.0.linux-amd64.tar.gz -C /usr/local/
cd /usr/local/
mv node_exporter-1.7.0.linux-amd64/ node_exporter
cd node_exporter/
./node_exporter &

默认端口9100

将node_exporter配置为systemd管理

vim /usr/lib/systemd/system/node_exporter.service

[Unit]
Description=node_exporter
After=network.target 

[Service]
ExecStart=/usr/local/node_exporter/node_exporter
Restart=on-failure

[Install]
WantedBy=multi-user.target


systemctl daemon-reload
systemctl start node_exporter

服务端配置数据
vim prometheus.yml 
scrape_configs:
  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
  - job_name: "prometheus"

    # metrics_path defaults to '/metrics'
    # scheme defaults to 'http'.

    static_configs:
      - targets: ["localhost:9090"]
  # 添加以下内容
  - job_name: "node_exporter"
    static_configs:
    # 如果有多个机器,用','分开
    - targets: ['ip:端口']

# 重启prometheus服务
systemctl restart prometheus

监控mysql

ini 复制代码
# 官网下载安装mysqld-exporter
tar xf mysqld_exporter-0.15.0.linux-amd64.tar.gz -C /usr/local/
cd /usr/local
mv mysqld_exporter-0.15.0.linux-amd64 mysqld_exporter
cd mysqld_exporter/

vim .my.cnf

[client]
user=用户名
password=密码


./mysqld_exporter --config.my-cnf="/usr/local/mysqld_exporter/.my.cnf" &           //启动mysqld-exporter


ps -ef |grep mysqld_exporter    //查看进程
ss -lntp |grep 4647             //过滤进程号,查看端口
默认端口:9104
复制代码
将mysqld-exporter配置为systemd管理

vim /usr/lib/systemd/system/mysqld_exporter.service

[Unit]
Description=Prometheus
[Service]
ExecStart=/usr/local/mysqld_exporter/mysqld_exporter --config.my-cnf=/usr/local/mysqld_exporter/.my.cnf
Restart=on-failure
[Install]
WantedBy=multi-user.target


systemctl daemon-reload
systemctl start mysqld_exporter

服务端配置
vim prometheus.yml                  //prometheus配置文件添加
  - job_name: 'mysql'
    static_configs:
      - targets: ['ip:端口']


systemctl restart prometheus   //重启prometheus

prometheus浏览器查看

复制代码
浏览器访问
ip:9090
复制代码
status=》Targets
查看关联的主机
相关推荐
带鱼吃猫5 分钟前
Linux系统:文件系统前言,详解CHS&LBA地址
linux·运维·服务器
野木香7 分钟前
mysql8常用sql语句
数据库·sql·mysql
默默提升实验室22 分钟前
Linux 系统如何挂载U盘
linux·运维·服务器
_extraordinary_36 分钟前
MySQL 事务(二)
android·数据库·mysql
mahuifa43 分钟前
python实现usb热插拔检测(linux)
linux·服务器·python
rylshe13141 小时前
在scala中sparkSQL连接mysql并添加新数据
开发语言·mysql·scala
Lw老王要学习1 小时前
Linux架构篇、第五章git2.49.0部署与使用
linux·运维·git·云计算·it
睡觉z1 小时前
Shell编程之正则表达式与文本处理器
数据库·mysql·正则表达式
啊吧怪不啊吧2 小时前
Linux之初见进程
linux·centos
Dreams_l2 小时前
MySQL初阶:查询进阶
数据库·mysql