centos安装完mysql报错:You must reset your password using ALTER USER statement before

解决办法:

 

1、 修改用户密码

mysql> alter user 'root'@'localhost' identified by 'youpassword';  

 

2、刷新权限

mysql> flush privileges;

 

猜你喜欢

转载自blog.csdn.net/ITzhongzi/article/details/86509499
今日推荐