mysql8如何修改root密碼
阿新 • • 發佈:2020-12-17
mysql5.7.9之後,就沒有了password函式,所以,使用傳統的password()函式修改root密碼的話,就會提示sql錯誤
老版本修改命令(已不適用):
UPDATE user SET authentication_string = password('123456') WHERE User='root'; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '('123456') WHERE User='root'' at line 1
正確設定密碼的方法是:
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';
```bash
此時提示修改成功,退出mysql再次登陸即需要輸入剛剛設定的密碼。
有解決不了的問題,可以在這個公眾號上有提問,基本都能得到答案:
![](https://www.icode9.com/img/l/?n=20&i=blog/1595725/202005/1595725-20200522133733399-395101149.jpg)