Zabbix 中使用 Percona Monitoring Plugins 监控 MySQL
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Zabbix 中使用 Percona Monitoring Plugins 监控 MySQL相关的知识,希望对你有一定的参考价值。
Zabbix 中使用 Percona Monitoring Plugins 监控 mysql
1.安装zabbix agent
[[email protected] ~]# rpm -ivh http://repo.zabbix.com/zabbix/3.2/rhel/7/x86_64/zabbix-agent-3.2.0-1.el7.x86_64.rpm [[email protected] ~]# yum install zabbix-agent
2.修改配置
[[email protected] ~]# vim /etc/zabbix/zabbix_agentd.conf
Server=192.168.137.3
ServerActive=192.168.137.3
Hostname=szlinux01
3.启动代理
[[email protected] ~]# systemctl enable zabbix-agent [[email protected] ~]# systemctl start zabbix-agent [[email protected] ~]# netstat -tunpl | grep 10050
4.在服务端测试数据获取
[[email protected] ~]# zabbix_get -s 192.168.137.3 -p 10050 -k system.uptime
5.安装php和php-mysql
[[email protected] ~]# yum install epel-release [[email protected] ~]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 [[email protected] ~]# yum install php php-mysql [[email protected] ~]# rpm -qa zabbix-agent php php-mysql
6.安装配置percona-zabbix-templates
[[email protected] ~]# 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 [[email protected] ~]# cp /var/lib/zabbix/percona/templates/userparameter_percona_mysql.conf /etc/zabbix/zabbix_agentd.d/ [[email protected] ~]# systemctl restart zabbix-agent
7.首先在被监控服务器szlinux01的mysql里添加权限,即本机使用zabbix账号连接本地的mysql
mysql> grant usage, process, replication client on *.* to ‘zabbix‘@‘localhost‘ identified by ‘[email protected]#123‘; mysql> flush privileges;
8.修改php文件的mysql用户名和密码
[[email protected] ~]# vim /var/lib/zabbix/percona/scripts/ss_get_mysql_stats.php
$mysql_user = ‘zabbix‘;
$mysql_pass = ‘[email protected]#123‘;
9.测试脚本
[[email protected] ~]# /var/lib/zabbix/percona/scripts/get_mysql_stats_wrapper.sh gg
10.配置~zabbix/.my.cnf
[[email protected] ~]# vim ~zabbix/.my.cnf
[client]
user = zabbix
password = ‘[email protected]#123‘
注意:复杂密码需要引号。
11.zabbix用户测试脚本
[[email protected] ~]# sudo -u zabbix -H /var/lib/zabbix/percona/scripts/get_mysql_stats_wrapper.sh running-slave
12.导入模板
将被监控服务器szlinux01上的/var/lib/zabbix/percona/templates/zabbix_agent_template_percona_mysql_server_ht_2.0.9-sver1.1.7.xml下载到本地,通过Zabbix页面导入到模板里。
配置->模板->导入
报错:
解决方法:
手动修改模板文件解决报错比较麻烦,有人提到可以将此模板导入 Zabbix 2.X 系列后,再导出到 Zabbix 3.X。
这里直接使用现成可用的 Zabbix 3.X 的 percona-zabbix-templates
zbx_percona_mysql_template.xml模板地址
13.添加主机并链接模板
发现没有最新的数据。于是,测试数据获取:
[[email protected] ~]# 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
解决方法:
在被监控服务器szlinux01上面执行如下操作即可
[[email protected] ~]# rm -rf /tmp/localhost-mysql_cacti_stats.txt [[email protected] ~]# touch /tmp/localhost-mysql_cacti_stats.txt [[email protected] ~]# chown -R zabbix:zabbix /tmp/localhost-mysql_cacti_stats.txt
再在zabbix上测试获取数据:
[[email protected] ~]# zabbix_get -s 192.168.137.3 -p 10050 -k "MySQL.max-connections" [[email protected] ~]# zabbix_get -s 192.168.137.3 -p 10050 -k "MySQL.Threads-connected" [[email protected] ~]# zabbix_get -s 192.168.137.3 -p 10050 -k "MySQL.running-slave"
数据也有了,过一会,就可以看到有图了。
本文出自 “SQL Server Deep Dive” 博客,请务必保留此出处http://ultrasql.blog.51cto.com/9591438/1926767
以上是关于Zabbix 中使用 Percona Monitoring Plugins 监控 MySQL的主要内容,如果未能解决你的问题,请参考以下文章
Zabbix 中使用 Percona Monitoring Plugins 监控 MySQL
zabbix使用percona插件监控mysql数据库(十九)