问题:
使用mysqldump备份警告:Warning: Using a password on the command line interface can be insecure.
原因:
mysql 5.6版本之后,使用 mysqldump dbName -r - p > backup.sql 会报警告。官方解释是因为安全原因。
解决办法:
- 找到my.ini文件
- 将以下代码写入文件:
[mysqld]
port = 3306
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
skip-grant-tables
[client]
host=localhost
user=root
password=root
3.在原有的基础上添加client部分,文件中user与password参数根据自己实际情况更改;
4.备份语句更改为:mysqldump --defaults-extra-file=my.ini shop > d:\time_2018-11-13_18-32-15.sql
5.file后的路径为你的my.ini文件的路径
作者:Schon_zh
来源:CSDN
原文:https://blog.csdn.net/u011374582/article/details/84033867
版权声明:本文为博主原创文章,转载请附上博文链接!