zabbix系列zabbix3.4监控mysql5.7
本来想用python脚本监控一下mysql的,没有找到相关资料,懒得折腾了,使用官方自带的监控模板进行监控mysql
添加zabbix-agent配置文件
把默认的userparameter_mysql.conf 文件进行替换为一下内容 [root@test-mq01 zabbix_agentd.d]# cat userparameter_mysql.conf
#UserParameter=mysql.status[*],echo "show global status where Variable_name='$1';" | HOME=/var/lib/zabbix mysql -N | awk '{print $$2}'UserParameter=mysql.status[*],/etc/zabbix/script/mysql/chk_mysql.sh $1#UserParameter=mysql.size[*],bash -c 'echo "select sum($(case "$3" in both|"") echo "data_length+index_length";; data|index) echo "$3_length";; free) echo "data_free";; esac)) from information_schema.tables$([[ "$1" = "all" || ! "$1" ]] || echo " where table_schema=\"$1\"")$([[ "$2" = "all" || ! "$2" ]] || echo "and table_name=\"$2\"");" | HOME=/var/lib/zabbix mysql -N'#UserParameter=mysql.ping,HOME=/var/lib/zabbix mysqladmin ping | grep -c aliveUserParameter=mysql.ping,mysqladmin -u root -pRoo -P3306 -h192.168.2.252 ping | grep -c aliveUserParameter=mysql.version,mysql -V
添加chk_mysql.sh脚本文件
/etc/zabbix/script/mysql/chk_mysql.sh
#!/bin/bash# -------------------------------------------------------------------------------# FileName: check_mysql.sh# Revision: 1.0# Date: 2018/01/31# Author: chunk# Email: # Website: # Description: # Notes: ~# -------------------------------------------------------------------------------# Copyright: # License: GPL# 用户名MYSQL_USER='root'# 密码MYSQL_PWD='Root'# 主机地址/IPMYSQL_HOST='192.168.2.252'# 端口MYSQL_PORT='3306'# 数据连接MYSQL_CONN="/usr/bin/mysqladmin -u${MYSQL_USER} -p${MYSQL_PWD} -h${MYSQL_HOST} -P${MYSQL_PORT}"# 参数是否正确if [ $# -ne "1" ];then echo "arg error!" fi # 获取数据case $1 in Uptime) result=`${MYSQL_CONN} status|cut -f2 -d":"|cut -f1 -d"T"` echo $result ;; Com_update) result=`${MYSQL_CONN} extended-status |grep -w "Com_update"|cut -d"|" -f3` echo $result ;; Slow_queries) result=`${MYSQL_CONN} status |cut -f5 -d":"|cut -f1 -d"O"` echo $result ;; Com_select) result=`${MYSQL_CONN} extended-status |grep -w "Com_select"|cut -d"|" -f3` echo $result ;; Com_rollback) result=`${MYSQL_CONN} extended-status |grep -w "Com_rollback"|cut -d"|" -f3` echo $result ;; Questions) result=`${MYSQL_CONN} status|cut -f4 -d":"|cut -f1 -d"S"` echo $result ;; Com_insert) result=`${MYSQL_CONN} extended-status |grep -w "Com_insert"|cut -d"|" -f3` echo $result ;; Com_delete) result=`${MYSQL_CONN} extended-status |grep -w "Com_delete"|cut -d"|" -f3` echo $result ;; Com_commit) result=`${MYSQL_CONN} extended-status |grep -w "Com_commit"|cut -d"|" -f3` echo $result ;; Bytes_sent) result=`${MYSQL_CONN} extended-status |grep -w "Bytes_sent" |cut -d"|" -f3` echo $result ;; Bytes_received) result=`${MYSQL_CONN} extended-status |grep -w "Bytes_received" |cut -d"|" -f3` echo $result ;; Com_begin) result=`${MYSQL_CONN} extended-status |grep -w "Com_begin"|cut -d"|" -f3` echo $result ;; *) echo "Usage:$0(Uptime|Com_update|Slow_queries|Com_select|Com_rollback|Questions|Com_insert|Com_delete|Com_commit|Bytes_sent|Bytes_received|Com_begin)" ;; esac
在zabbix-web端主机添加模板链接
重启监控端agent
service zabbix-agent restart
zabbix server端测试是否有数据
[root@tools-jenkins ~]# zabbix_get -s 192.168.2.41 -k mysql.status[Questions]3533479678
[Warning] Using a password on the command line interface can be insecure.
这个其实很简单,脚本中导入export MYSQL_PWD=<password>,或者/etc/bashrc导入export MYSQL_PWD=<password> 最后脚本少-p,大概格式是这样:
#原数据连接# 数据连接MYSQL_CONN="/usr/bin/mysqladmin -u${MYSQL_USER} -p${MYSQL_PWD} -h${MYSQL_HOST} -P${MYSQL_PORT}"# 新数据连接MYSQL_CONN="/usr/bin/mysqladmin -u${MYSQL_USER} -h${MYSQL_HOST} -P${MYSQL_PORT}"
zabbix监控mysql之Warning: Using a password on the command line interface can be insecure.
2017年10月31日 18:11:42 阅读数:6556 标签: 更多
个人分类:
版权声明:本文为博主原创文章,未经博主允许不得转载,同时也欢迎到我的个人站点:kooola.com | https://blog.csdn.net/z644041867/article/details/78406310
使用zabbix自带模板对mysql进行监控时,发现mysql5.6以上版本在使用mysqladmin时会发出警告:“Warning: Using a password on the command line interface can be insecure.” 。这样zabbix服务端获取数值的时候,会带有该字符串,导致报错。
解决办法试了很多,包括:
1、使用grep -v Warning result进行过滤。
2、使用mysql_config_editor进行无密码操作。
3、修改my.conf配置文件,将mysqladmin用户名密码写入配置文件。
4、在zabbix服务端寻找过滤返回值的操作。
但是以上方法都未凑效,很是尴尬。
最后实验成功的方法是:将mysqladmin的警告信息重定向到/dev/null,忽略掉告警信息。
Com_select)
result=`/usr/bin/mysqladmin -u$MYSQL_USER -h$MYSQL_HOST -p${MYSQL_PWD} -S $MYSQL_SOCK extended-status 2>/dev/null|grep -w "Com_select"|cut -d"|" -f3` echo $result ;;在原有命令中加上2>/dev/null 就行了。
使用服务端的zabbix_get命令测试下:
修改之前:
[root@VM-4ecd-7f03-4bf-9a bin]# ./zabbix_get -s xx.xx.xx.xx -p 10050 -k mysql.status[Uptime]
Warning: Using a password on the command line interface can be insecure. 159486修改之后:
[root@VM-4ecd-7f03-4bf-9a bin]# ./zabbix_get -s xx.xx.xx.xx -p 10050 -k mysql.status[Uptime]
159496mysql告警信息不见了。
另:有人告诉我可以通过“mysqladmin --defaults-extra-file=/etc/my.cnf”进行处理,因为问题已经解决了,就没有去尝试了。