Monday, 2 December 2019

MYSQL ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

Error:

On select statement

mysql> SELECT user, host FROM mysql.user;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

Solution:

ALTER USER 'root'@'localhost' IDENTIFIED BY '******';
FLUSH PRIVILEGES;

No comments: