当前位置: 代码迷 >> 综合 >> Prometheus 监控 mysql
  详细解决方案

Prometheus 监控 mysql

热度:68   发布时间:2023-09-30 10:52:13.0

在k8s-master节点操作

1.安装mysql_exporter(这个是用来采集MySQL指标的一个组件,就像前面的redis和tomcat都有其对应的exporter)


Prometheus 监控 mysql

tar -xvf mysqld_exporter-0.10.0.linux-amd64.tar.gzcd mysqld_exporter-0.10.0.linux-amd64cp -ar mysqld_exporter /usr/local/bin/chmod +x /usr/local/bin/mysqld_exporter

2.登陆mysql为mysql_exporter创建账号并授权


 # 创建数据库用户

 mysql> CREATE USER 'mysql_exporter'@'localhost' IDENTIFIED BY 'Abcdef123!.';

 # 对mysql_exporter用户授权

mysql> GRANT PROCESS, REPLICATION CLIENT, SELECT ON *.* TO 'mysql_exporter'@'localhost';

exit 退出mysql

3.创建mysql配置文件、运行时可免密码连接数据库:


cd mysqld_exporter-0.10.0.linux-amd64cat my.cnf [client] user=mysql_exporter password=Abcdef123!.

4.启动mysql_exporter客户端


nohup ./mysqld_exporter --config.my-cnf=./my.cnf &

mysqld_exporter的监听端口是9104

5.修改prometheus-cfg.yaml文件,添加如下


- job_name: 'mysql'static_configs: - targets: ['192.168.124.16:9104']
  相关解决方案