首页 > 代码库 > mysqldump提示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.
场景:
主机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.
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。