一、MAC Mysql安装

1、下载dmg安装

从http://dev.mysql.com/downloads/mysql/下载dmg安装

二、Mysql密码修改

1、通过mysql -uroot -ppwd进入到命令行,会发现任何操作都会出现ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement。也就是必须立刻修改密码。

修改密码方法:

ALTER USER 'root'@'localhost' IDENTIFIED BY 'pwd' ;

update mysql.user set authentication_string=PASSWORD('pwd') where user='root' and host='localhost';

flush privileges;

修改完毕

相关文章:

  • 2022-01-09
  • 2021-12-20
  • 2022-02-23
  • 2021-06-27
  • 2022-12-23
  • 2021-07-20
  • 2022-12-23
  • 2021-09-20
猜你喜欢
  • 2021-08-19
  • 2022-01-21
  • 2021-11-21
  • 2021-11-25
  • 2022-01-21
  • 2021-09-04
相关资源
相似解决方案