We have find the solution with below steps:
Go with Access Command prompt
Run:
# sudo mysql
mysql > GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost';
mysql> exit;
And For specified database:
GRANT ALL ON databasename TO 'username'@'localhost';
Hope help you lots.
- 1 like
- 0 comment