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;
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:
Post a Comment