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

在终端登录mysq数据库的时候进行报错:
原因是在终端上输入密码不安全:
相信你之前一定是这样输入的密码;

mysql -u root -p your passwords

这样登录真的不行,只要输入的是:

mysql -u root -p

在终端输入这样的指令终端会返回一个“Enter password”
你会发现这个时候输入密码会进行星号的遮挡,输入正确的密码后成功登录Mysql数据库,并且不再爆出warning。登录流程类似服务器。
解决Warning: Using a password on the command line interface can be insecure._第1张图片

你可能感兴趣的:(C++开发岗位学习记录,数据库,mysql,java,安全)