之前一直用免密码登录 😢😢 😢,今天再次找方法去修改密码,但网上方法一直失效,直到找到这篇,
blog
mysql> update mysql.user set authentication_string=password("123456"),plugin='mysql_native_password' where user='root';
其实就比网上多一步操作,update mysql.user中 修改plugin='mysql_native_password'
就完事了,否则将仍然登录失败.