解决mysqldump: [Warning] Using a password on the command line interface can be insecure.

北城以北 提交于 2020-02-13 14:00:05

环境:win7

mysql版本

mysql> select version();
+------------+
| version() |
+------------+
| 5.7.26-log |
+------------+
1 row in set

在执行mysqldump命令时,出现如下错误

mysqldump: [Warning] Using a password on the command line interface can be insecure.

解决方法:

  添加用户baby,密码 xyz123 并赋予要备份的数据库全部权限

  修改my.ini

[client]
port = 3306
host = localhost
user = baby
password = 'xyz123'

重启mysql

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!