取消提示:mysql: [Warning] Using a password on the command line interface can be insecure.

目前使用的方法

mysql路径 mysql用户账号密码配置文件的路径
示例:
E:\application\phpstudy_pro\Extensions\MySQL5.7.26\bin\mysql.exe --defaults-file="E:\application\phpstudy_pro\Extensions\MySQL5.7.26\my.cnf"

my.cnf里面这样写

[client]
user=root
password=123456

 

 

在cmd里直接设置一个mysql密码的环境变量 MYSQL_PWD后面是你的数据库的密码

set MYSQL_PWD=123456

然后直接在cmd里输入用户名即可,例如

mysql -u root

若是想要弄一个bat脚本的话,你需要这样写:

@echo off
set MYSQL_PWD=123456
start cmd /k "E:\application\phpstudy_pro\Extensions\MySQL5.7.26\bin\mysql.exe -u root -h 127.0.0.1"

 

版权声明:
作者:kukey-admin
链接:http://kuyour.top/index.php/2024/08/08/%e5%8f%96%e6%b6%88%e6%8f%90%e7%a4%bamysql-warning-using-a-password-on-the-command-line-interface-can-be-insecure/
来源:KuKey
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
取消提示:mysql: [Warning] Using a password on the command line interface can be insecure.
目前使用的方法 mysql路径 mysql用户账号密码配置文件的路径 示例: E:\application\phpstudy_pro\Extensions\MySQL5.7.26\bin\mysql.exe --defaults-file="E……
<<上一篇
下一篇>>