Warning: Using a password on the command line inte
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Warning: Using a password on the command line inte相关的知识,希望对你有一定的参考价值。
使用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的主要内容,如果未能解决你的问题,请参考以下文章
Warning: Using a password on the command line interface can be insecure.
mysqldump提示Warning: Using a password on the command line interface can be insecure.
MYSQL报警:Warning: Using a password on the command line interface can be insecure.
mysql 备份报错mysqldump: [Warning] Using a password on the command line interface can be insecure.
消除MySQL连接时的Warning:Using a password on the command line interface can be insecure.
Warning: Using a password on the command line interface can be insecure.解决办法