Promethus(普羅米修斯)監控Mysql數據庫mysql
這個是基於上面環境搭建的,須要的能夠訪問方面鏈接查看。linux
教程使用的軟件:連接: https://pan.baidu.com/s/1QV4KYZksyIp65UsScioq4Q 提取碼: vcejweb
監控遠程MySQLsql
服務器 | 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組件vim
安裝mysqld_exporter組件bash
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
安裝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)ide
MariaDB [(none)]> flush privileges; MariaDB [(none)]> quit
建立一個mariadb配置文件,寫上鍊接的用戶名與密碼(和上面的受權的用戶名 和密碼要對應)ui
vim /usr/local/mysqld_exporter/.my.cnf
[client] user=mysql_monitor password=123
啓動mysqld_exporter
nohup /usr/local/mysqld_exporter/mysqld_exporter --config.my-cnf=/usr/local/mysqld_exporter/.my.cnf &
確認端口(9104)
② 回到prometheus服務器的配置文件裏添加被監控的mariadb的配置段
在主配置文件最後再加上下面三行
vim /usr/local/prometheus/prometheus.yml
- job_name: 'mariadb' static_configs: - targets: ['192.168.116.130:9104']
- 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了