本地安装了个mysql5.7,发现修改root密码和以往有区别了,特此记录下

进入mysql  更改密码:

mysql> update mysql.user set authentication_string=password('新密码') where  user='root' and Host = 'localhost';
mysql> flush privileges;
mysql> quit//关闭

 

相关文章:

  • 2021-08-13
  • 2022-01-05
  • 2021-09-11
  • 2022-12-23
  • 2022-12-23
  • 2021-06-17
  • 2021-06-26
  • 2021-09-04
猜你喜欢
  • 2021-11-16
  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
相关资源
相似解决方案