prometheus+mysql_exporter监控mysql

prometheus+mysql_exporter监控mysql
一.安装mysql
1.下载:wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
2.安装客户端:yum -y install mysql57-community-release-el7-10.noarch.rpm
3.安装服务端:yum -y install mysql-community-server
4.启动服务:systemctl start mysqld.service
5.查看服务是否启动:systemctl status mysqld.service
prometheus+mysql_exporter监控mysql_第1张图片

6.修改默认密码
进入mysql的配置问加减:vim /etc/my.cnf
添加如下信息
prometheus+mysql_exporter监控mysql_第2张图片

输入命令重启服务:systemctl restart mysqld
执行mysql进入myslq命令行
修改密码:
5.7之前:update user set password=password("123456") where user='root';
5.7之后:update mysql.user set authentication_string=password('123456') where user='root';
刷新:flush privileges;
退出:exit;
把/etc/my.cnf中的skip-grant-tables注释再重启服务
查看是否重启成功

二.安装mysqld_exporter
提前:在数据库中创建监控账号 和密码并授权

GRANT REPLICATION CLIENT,PROCESS,SELECT ON *.* TO qa_group@'127.0.0.1' identified by 'nF5kbr9Y6Jm1ZDQ7xTW0';

1.下载:wget https://github.com/prometheus/mysqld_exporter/releases/download/v0.12.1/mysqld_exporter-0.12.1.linux-amd64.tar.gz
2.解压 tar -zxvf mysqld_exporter-0.12.1.linux-amd64.tar.gz
3.重命名:mv mysqld_exporter-0.12.1.linux-amd64 mysqld_exporter
4.在root目录下新建文件:.my.cnf
5.进行.my.cnf文件配置
注意:user和password可以使用mysql的登录用户名和密码也可以自己定义
prometheus+mysql_exporter监控mysql_第3张图片

6.启动 服务
在这里插入图片描述

7.浏览器输入部署的ip+9104端口进行测试
prometheus+mysql_exporter监控mysql_第4张图片

三.集成Grafana+prometheus
1.修改 vim prometheus.yml 配置文件 并重启服务prometheus
prometheus+mysql_exporter监控mysql_第5张图片

2.下载mysql模板(7362)
3.新建prometheus数据源
prometheus+mysql_exporter监控mysql_第6张图片

4.监控效果如图:
prometheus+mysql_exporter监控mysql_第7张图片

#查询慢查询是否开启
SHOW VARIABLES LIKE ‘%QUERY%’;

#慢查询语句所在的表
SELECT * from mysql.slow_log;

你可能感兴趣的:(性能测试,prometheus,mysql,数据库)