Using a password on the command line interface can be insecure.
使用mysqldump遇到报错mysqldump: [Warning] Using a password on the command line interface can be insecure.该错误是提示mysqldump: [Warning]在命令行界面使用密码可能是不安全的。是mysql更新至5.6以后出现的安全保护方式主要原因这边是在shell脚本上调用了mysqldump命令mysq
·
使用mysqldump遇到报错
mysqldump: [Warning] Using a password on the command line interface can be insecure.
该错误是提示mysqldump: [Warning]在命令行界面使用密码可能是不安全的。
是mysql更新至5.6以后出现的安全保护方式
主要原因这边是在shell脚本上调用了mysqldump命令
mysqldump -u root -p 111111 库名 > 路径
注释:111111是我的密码
执行shell脚本后,提示报错,脚本无法执行
解决办法
首先打开my.cnf 配置文件
不知道路径的
# whereis my
my: /etc/my.cnf
打开配置文件
在[mysqldump]下添加
user=root
password=111111
保存退出
查看效果
调用mysqldump命令时修改指令,将密码去掉
mysqldump -u root -p 库名 > 路径
此时执行脚本时,会提示输入密码
输入mysql密码即可执行成功
更多推荐
已为社区贡献1条内容
所有评论(0)