I have followed this tutorial to install MySQL but after successfully installed MySQL, I could not access database.
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
I have followed this tutorial to install MySQL but after successfully installed MySQL, I could not access database.
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
I found a solution at here link, by following this solution I have solved my problem.
Short steps are:
Note: here
test
is a new password for the root user. Also, remember to run the commandsudo service mysql restart
after altering the user.I found another way that is much better as we need not to give any password for local system.
It is as followed.
Open terminal and type
It will prompt you in mysql, here you can fire any mysql commands.
Use mysql table for change table type, so we can use empty password. Bellow is command for it
Now we change type of table by following command
now we have to flush the privileges, because we have used UPDATE. If you use INSERT, UPDATE or DELETE on grant tables directly you need use FLUSH PRIVILEGES in order to reload the grant tables.
now exit from mysql by following command
now restart mysql server by following command
Hope this may help
Thank you.