Mac 安装 MySQL 5.7 后登入后无法执行命令You must reset your password using ALTER USER statement before executing
Posted zacky31
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac 安装 MySQL 5.7 后登入后无法执行命令You must reset your password using ALTER USER statement before executing相关的知识,希望对你有一定的参考价值。
今天在 Mac 上安装了 mysql 5.7 ,启动服务后,输入 mysql -u root -p 后,输入初始密码程,尝试执行 show databases;
报了一个 You must reset your password using ALTER USER statement before executing this statement. 错误。
参考 Stack Overflow 上一篇文章 https://stackoverflow.com/questions/33467337/reset-mysql-root-password-using-alter-user-statement-after-install-on-mac
步骤如下:
set password = password(\'your new password\');
alter user \'root\'@\'localhost\' password expire never;
flush privileges;
以上是关于Mac 安装 MySQL 5.7 后登入后无法执行命令You must reset your password using ALTER USER statement before executing的主要内容,如果未能解决你的问题,请参考以下文章