码迷,mamicode.com
首页 > 其他好文 > 详细

Warning: Using a password on the command line inte

时间:2019-04-19 16:07:20      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:信息   pwd   忽略   pass   定向   int   sel   grep -w   数值   

使用zabbix自带模板对mysql进行监控时,发现mysql5.6以上版本在使用mysqladmin时会发出警告:“Warning: Using a password on the command line interface can be insecure.” 。这样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 就行了。

Warning: Using a password on the command line inte

标签:信息   pwd   忽略   pass   定向   int   sel   grep -w   数值   

原文地址:https://blog.51cto.com/13120271/2381346

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!