您好,登錄后才能下訂單哦!
Zabbix 中使用 Percona Monitoring Plugins 監(jiān)控 MySQL
1.安裝zabbix agent
[root@szlinux01 ~]# rpm -ivh http://repo.zabbix.com/zabbix/3.2/rhel/7/x86_64/zabbix-agent-3.2.0-1.el7.x86_64.rpm [root@szlinux01 ~]# yum install zabbix-agent
2.修改配置
[root@szlinux01 ~]# vim /etc/zabbix/zabbix_agentd.conf
Server=192.168.137.3
ServerActive=192.168.137.3
Hostname=szlinux01
3.啟動代理
[root@szlinux01 ~]# systemctl enable zabbix-agent [root@szlinux01 ~]# systemctl start zabbix-agent [root@szlinux01 ~]# netstat -tunpl | grep 10050
4.在服務(wù)端測試數(shù)據(jù)獲取
[root@szzabbix ~]# zabbix_get -s 192.168.137.3 -p 10050 -k system.uptime
5.安裝php和php-mysql
[root@szlinux01 ~]# yum install epel-release [root@szlinux01 ~]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 [root@szlinux01 ~]# yum install php php-mysql [root@szlinux01 ~]# rpm -qa zabbix-agent php php-mysql
6.安裝配置percona-zabbix-templates
[root@szlinux01 ~]# yum install https://www.percona.com/downloads/percona-monitoring-plugins/percona-monitoring-plugins-1.1.7/binary/redhat/7/x86_64/percona-zabbix-templates-1.1.7-2.noarch.rpm [root@szlinux01 ~]# cp /var/lib/zabbix/percona/templates/userparameter_percona_mysql.conf /etc/zabbix/zabbix_agentd.d/ [root@szlinux01 ~]# systemctl restart zabbix-agent
7.首先在被監(jiān)控服務(wù)器szlinux01的mysql里添加權(quán)限,即本機使用zabbix賬號連接本地的mysql
mysql> grant usage, process, replication client on *.* to 'zabbix'@'localhost' identified by 'ABCabc!@#123'; mysql> flush privileges;
8.修改php文件的mysql用戶名和密碼
[root@szlinux01 ~]# vim /var/lib/zabbix/percona/scripts/ss_get_mysql_stats.php
$mysql_user = 'zabbix';
$mysql_pass = 'ABCabc!@#123';
9.測試腳本
[root@szlinux01 ~]# /var/lib/zabbix/percona/scripts/get_mysql_stats_wrapper.sh gg
10.配置~zabbix/.my.cnf
[root@szlinux01 ~]# vim ~zabbix/.my.cnf
[client]
user = zabbix
password = 'ABCabc!@#123'
注意:復(fù)雜密碼需要引號。
11.zabbix用戶測試腳本
[root@szlinux01 ~]# sudo -u zabbix -H /var/lib/zabbix/percona/scripts/get_mysql_stats_wrapper.sh running-slave
12.導(dǎo)入模板
將被監(jiān)控服務(wù)器szlinux01上的/var/lib/zabbix/percona/templates/zabbix_agent_template_percona_mysql_server_ht_2.0.9-sver1.1.7.xml下載到本地,通過Zabbix頁面導(dǎo)入到模板里。
配置->模板->導(dǎo)入
報錯:
解決方法:
手動修改模板文件解決報錯比較麻煩,有人提到可以將此模板導(dǎo)入 Zabbix 2.X 系列后,再導(dǎo)出到 Zabbix 3.X。
這里直接使用現(xiàn)成可用的 Zabbix 3.X 的 percona-zabbix-templates
zbx_percona_mysql_template.xml模板地址
13.添加主機并鏈接模板
發(fā)現(xiàn)沒有最新的數(shù)據(jù)。于是,測試數(shù)據(jù)獲?。?/p>
[root@szzabbix ~]# zabbix_get -s 192.168.137.3 -p 10050 -k "MySQL.max-connections"
報錯:
rm: cannot remove `/tmp/localhost-mysql_cacti_stats.txt': Operation not permitted
解決方法:
在被監(jiān)控服務(wù)器szlinux01上面執(zhí)行如下操作即可
[root@szlinux01 ~]# rm -rf /tmp/localhost-mysql_cacti_stats.txt [root@szlinux01 ~]# touch /tmp/localhost-mysql_cacti_stats.txt [root@szlinux01 ~]# chown -R zabbix:zabbix /tmp/localhost-mysql_cacti_stats.txt
再在zabbix上測試獲取數(shù)據(jù):
[root@szzabbix ~]# zabbix_get -s 192.168.137.3 -p 10050 -k "MySQL.max-connections" [root@szzabbix ~]# zabbix_get -s 192.168.137.3 -p 10050 -k "MySQL.Threads-connected" [root@szzabbix ~]# zabbix_get -s 192.168.137.3 -p 10050 -k "MySQL.running-slave"
數(shù)據(jù)也有了,過一會,就可以看到有圖了。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。