配置prometheus监控mysql服务

2022/2/3 19:14:12

本文主要是介绍配置prometheus监控mysql服务,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

配置prometheus监控mysql服务

环境:已经装好mysql的centos7系统

  • 添加用于监控的mysql账号
grant replication client,process on *.*  to 'mysql_monitor'@'localhost' identified by '123456';
grant select on *.* to 'mysql_monitor'@'localhost';
exit;

下载mysqld_exporter

wget https://github.com/prometheus/mysqld_exporter/releases/download/v0.13.0/mysqld_exporter-0.13.0.linux-amd64.tar.gz
tar zxvf mysqld_exporter-0.13.0.linux-amd64.tar.gz -C /usr/local/
mv mysqld_exporter-0.13.0.linux-amd64 mysqld_exporter
vim /usr/local/mysqld_exporter/.my.cnf
[client]
user=mysql_monitor
password=123456
  • 创建运行账户
useradd -m -s /sbin/nologin prometheus
  • 编辑systemctl配置文件
vim /etc/systemd/system/mysqld_exporter.service
[Unit]
Description=mysqld_exporter
After=network.target
[Service]
Type=simple
User=prometheus
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

systemctl daemon-reload

启动mysqld_exporter

systemctl enable --now mysqld_exporter


这篇关于配置prometheus监控mysql服务的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程