phpmyadmin登陸不上的解決方案

mysql 管理


```
服務管理:
service mysql restart
service mysql start
service mysql stop


更改密碼:
update mysql.user set authentication_string=PASSWORD(''), plugin='mysql_native_password' where user='root';
更改登陸方式:
update mysql.user set plugin='mysql_native_password' where user='root';


phpmyadmin 登陸 root 需要設置 plugin='mysql_native_password' 


```
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章