美文网首页PrometheusSecurity监控
Prometheus-4·监控mariadb数据库Grafana

Prometheus-4·监控mariadb数据库Grafana

作者: 技术老男孩 | 来源:发表于2022-12-14 08:06 被阅读0次

    一、监控mariadb数据库流程:

    1. 在节点上安装数据库
    2. 在节点安装mysql exporter
    3. 配置监控端prometheus监控mysql
    4. 导入展示模板查看mysql exporter数据

    二、环境准备:

    实验拓扑.png

    Prometheus版本:prometheus-2.17.2.linux-386

    Grafana版本:grafana-6.7.3-1.x86_64.rpm

    Mysqld_exporter版本:mysqld_exporter-0.12.1.linux-amd64

    三、实施:

    第一步:在节点上安装数据库

    • node1节点安装mariadb-server
    # 安装数据库
    [root@node1 ~]# yum install -y mariadb-server
    
    • 启动mariadb-server服务
    # 启动服务
    [root@node1 ~]# systemctl enable mariadb --now
    

    第二步:在节点安装mysql exporter

    • mysql exporter需要访问数据库,所以需要在数据库中为exporter创建授权用户(jerry)
    # 进入数据库
    [root@node1 ~]# mysql
    # 创建用户jerry,密码是123
    MariaDB [(none)]> grant all on *.* to jerry@'localhost' identified by '123';    
    # 退出
    MariaDB [(none)]> exit
    
    • 配置mysql exporter
    # 解压mysqld_exporter软件包
    [root@node1 ~]# tar xf mysqld_exporter-0.12.1.linux-amd64.tar.gz 
    # 复制到local目录下
    [root@node1 ~]# mv mysqld_exporter-0.12.1.linux-amd64 /usr/local
    /mysqld_exporter
    
    • 编写用于连接mysql服务的配置文件
    # 创建.my.cnf
    [root@node1 ~]# vim /usr/local/mysqld_exporter/.my.cnf
    [client]
    host=127.0.0.1
    port=3306
    user=jerry
    password=123
    
    • 创建service文件(方便启动)
    # 创建service文件
    [root@node1 ~]# vim /usr/lib/systemd/system/mysqld_exporter.service
    [Unit]
    Description=mysqld_exporter
    After=network.target
    
    [Service]
    ExecStart=/usr/local/mysqld_exporter/mysqld_exporter \
    --config.my-cnf=/usr/local/mysqld_exporter/.my.cnf
    
    [Install]
    WantedBy=multi-user.target
    
    • 启动mysqld_exporter服务
    # 重新加载配置
    [root@node1 ~]# systemctl daemon-reload
    # 启动服务
    [root@node1 ~]# systemctl enable mysqld_exporter.service --now
    
    • 查看9104端口
    [root@node1 ~]# ss -tlnp | grep :9104
    LISTEN     0      128         :::9104
    

    第三步:配置监控端prometheus监控mysql

    # 修改配置文件,追加以下内容:
    [root@prometheus ~]# vim /usr/local/prometheus/prometheus.yml 
      - job_name: 'mysql'
        static_configs:
        - targets: ['192.168.88.11:9104']
    
    • 重启prometheus服务
    [root@prometheus ~]# systemctl restart prometheus.service 
    
    • 查看状态


      查看状态1.png
      查看状态2.png

    第四步:导入展示模板查看mysql exporter数据

    • 导入监控模板


      导入模板1.png
      导入模板2.png
      导入模板3.png
      导入模板4.png
    • 查看监控数据


      查看监控数据1.png
    • 模板切换查看其模板


      模板切换1.png
      模板切换2.png

    相关文章

      网友评论

        本文标题:Prometheus-4·监控mariadb数据库Grafana

        本文链接:https://www.haomeiwen.com/subject/qaqefdtx.html