MySQL You must reset your password using ALTER USE

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL You must reset your password using ALTER USE相关的知识,希望对你有一定的参考价值。

今天在mac上新安裝了mysql 5.7。出了几个小问题如下:
  • 不要下最新的,安装其他版本出现不兼容的问题。我开始的时候使用mysql8.0做实验,程序怎么也运行不起来,然后看程序log,才发现是版本不兼容的问题,mysql版本过高。

  • 安装完成之后没有启动,用ps -ef|grep mysql 发现没有进程,重新启动电脑,然后就好了。

  • 新安装的mysql,初次使用的时候提示:You must reset your password using ALTER USER statement before executing this statement.
    技术图片

赶紧上网查了查,解决办法如下:

SET PASSWORD = PASSWORD(‘你的新密码‘);
ALTER USER ‘root‘@‘localhost‘ PASSWORD EXPIRE NEVER;
FLUSH PRIVILEGES;

问题就解决了~
技术图片

以上是关于MySQL You must reset your password using ALTER USE的主要内容,如果未能解决你的问题,请参考以下文章

mysql 报错ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executin(

You must reset your password using ALTER USER

You must reset your password using ALTER USER statement before executing this statement.

Mac 安装 MySQL 5.7 后登入后无法执行命令You must reset your password using ALTER USER statement before executing

mysql 5.7 版本 You must reset your password using ALTER USER statement before executing this statement

mac mysql error You must reset your password using ALTER USER statement before executing this statem