mysql登录不需要输入密码解决方法
use mysql;
update user set authentication_string=PASSWORD("密码") where user='root';
update user set plugin="mysql_native_password";
flush privileges;
quit;
转载于https://www.jianshu.com/p/37f823e45496
use mysql;
update user set authentication_string=PASSWORD("密码") where user='root';
update user set plugin="mysql_native_password";
flush privileges;
quit;
转载于https://www.jianshu.com/p/37f823e45496