I am trying to create a new user but whenever i launch the mysql shell and enter it as the root user using the command
mysql -u root -p
I get an error saying
ERROR 1524 (HY000): Plugin 'root' is not loaded
I am trying to create a new user but whenever i launch the mysql shell and enter it as the root user using the command
mysql -u root -p
I get an error saying
ERROR 1524 (HY000): Plugin 'root' is not loaded
I solved my problem by adding a new user. step 1 to 3 might not be useful for all.
if USER is already present delete it using -
DROP USER 'test'@'localhost';
this will create a new user . or you can modify the password for the same user. Option 4 and 5 will help to get you to mysql terminal, once you got there you can solve your issue.