当前位置: 代码迷 >> 综合 >> 初始化sql 报错:You must reset your password using ALTER USER statement before executing this statement.
  详细解决方案

初始化sql 报错:You must reset your password using ALTER USER statement before executing this statement.

热度:6   发布时间:2023-10-24 21:26:03.0

用语句 use mysql 的时候报错如下,

mysql> use mysql;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

MySQL 5.7之后,刚初始化的MySQL实例要求先修改密码。否则会报错:


alter user root@localhost identified by 'P@ssword1!';
flush privileges;
  相关解决方案