当前位置:   article > 正文

简易mysql数据库监控_Promethus(普罗米修斯)监控Mysql数据库

普罗米修斯如何监控数据库死锁

Promethus(普罗米修斯)监控Mysql数据库

这个是基于上面环境搭建的,需要的可以访问方面连接查看。

监控远程MySQL

服务器

IP地址

Prometneus服务器

192.168.116.129

被监控服务器(mysql)

192.168.116.130

grafana服务器

192.168.116.131

① 在被管理机agent1上安装mysqld_exporter组件

下载地址:https://prometheus.io/download/

上传mysqld_exporter组件

54ff0ab5e18fb26e39810c9a16513c39.png

安装mysqld_exporter组件

tar xf mysqld_exporter-0.11.0.linux-amd64.tar.gz -C /usr/local/

mv /usr/local/mysqld_exporter-0.11.0.linux-amd64/ /usr/local/mysqld_exporter

ls /usr/local/mysqld_exporter

6076ec4e7ea9010aeff84a676cc8fcf7.png

安装mariadb数据库,并授权

yum install mariadb* -y

systemctl restart mariadb

systemctl enable mariadb

mysql

MariaDB [(none)]> grant select,replication client,process ON *.* to 'mysql_monitor'@'localhost' identified by '123';

(注意:授权ip为localhost,因为不是prometheus服务器来直接找mariadb 获取数据,而是prometheus服务器找mysql_exporter,mysql_exporter 再找mariadb。所以这个localhost是指的mysql_exporter的IP)

MariaDB [(none)]> flush privileges;

MariaDB [(none)]> quit

17c2dd712fc7da8bdc778077756c5a49.png

创建一个mariadb配置文件,写上连接的用户名与密码(和上面的授权的用户名 和密码要对应)

vim /usr/local/mysqld_exporter/.my.cnf

[client]

user=mysql_monitor

password=123

df83155998d018e4ad4cd1eef550add1.png

启动mysqld_exporter

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

确认端口(9104)

61c81ce1a9be6138a8ef1bc8619b862d.png

② 回到prometheus服务器的配置文件里添加被监控的mariadb的配置段

在主配置文件最后再加上下面三行

vim /usr/local/prometheus/prometheus.yml

- job_name: 'mariadb'

static_configs:

- targets: ['192.168.116.130:9104']

05d248360dc8d1a8715d0e662b7f5cc1.png

- job_name: 'agent1_mariadb' # 取一个job 名称来代表被监控的mariadb

static_configs:

- targets: ['10.1.1.14:9104'] # 这里改成 被监控机器的IP,后面端口接9104

改完配置文件后,重启服务

pkill prometheus

/usr/local/prometheus/prometheus --config.file="/usr/local/prometheus/prometheus.yml" &

③ 回到web管理界面 --》点Status --》点Targets --》可以看到监控 mariadb了

58edaa8efe4a1a0566ed3d50bc59c7ea.png

5f2bde5f9ad92967f22d0cde82464287.png

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/517397
推荐阅读
相关标签
  

闽ICP备14008679号