配置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服务的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程
- 2024-11-01部署MySQL集群学习:新手入门教程
- 2024-11-01部署MySQL集群入门:新手必读指南
- 2024-10-23BinLog入门:新手必读的MySQL二进制日志指南
- 2024-10-23Binlog入门:MySQL数据库的日志管理指南