mysql 消除 "[Warning] Using a password on the command line interface can be insecure"
Posted Young233
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 消除 "[Warning] Using a password on the command line interface can be insecure"相关的知识,希望对你有一定的参考价值。
如果将mysql密码明文写出来,进入的时候,系统前台会打印:
[Warning] Using a password on the command line interface can be insecure
意思就是说,密码露了,不安全。
我们执行脚本的时候,最好可以把这个东西干掉,否则一直弹弹弹,烦的要死。
于是我们可以:
?
1. 建立一个文件,存放用户名、密码
touch /etc/my.password
然后写入下列内容:
[client]
user=root
password=密码
?
2. 登录时,不使用-u -p来指定,使用--defaults-extra-file=/etc/my.password来指定配置文件进行登录,就可以消掉那行warning了。
mysql --defaults-extra-file=/etc/my.password
以上是关于mysql 消除 "[Warning] Using a password on the command line interface can be insecure"的主要内容,如果未能解决你的问题,请参考以下文章
c-free编译器总是出现一个警告,如何消除 warning:no newline at the end of file
MYSQL命令行输入密码警告问题"mysql: [Warning]"解决
如何消除可能以或不以 www 开头的“重复”URL MySQL 行?
消除: warning C4996: 'sprintf': This function or variable may be unsafe. Consider 的方法
转载keil消除*** WARNING L16: UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS警告方法