码迷,mamicode.com
首页 > 数据库 > 详细

mysqldump提示Warning: Using a password on the command line interface can be insecure.

时间:2017-03-13 16:55:17      阅读:594      评论:0      收藏:0      [点我收藏+]

标签:mysql   dump   warning   

场景:

主机A和主机B在局域网内,之前一直在主机A上用计划任务在跑mysqldump去备份主机B上的数据库,前两天突然出现:Warning: Using a password on the command line interface can be insecure.


之前的计划任务的代码是:

mysqldump -h10.255.xxx.xxx  -uroot -pxxxx dbxxx | gzip > /root/Db/Backup/DbName_$(date +\%Y\%m\%d-\%H).sql.gz

然后直接在主机A上执行,会提示Warning: Using a password on the command line interface can be insecure. 并且备份不成功。


然后把代码改为:

mysqldump -uroot -pxxxx -h 10.255.xxx.xxx dbxxx | gzip > /root/Db/Backup/DbName_$(date +\%Y\%m\%d-\%H).sql.gz (就是把-h的参数放在后面)

再执行,依然会提示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   dump   warning   

原文地址:http://357989.blog.51cto.com/347989/1905749

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