I have a Centos 6 box with MySQL 5.6
There's a database control panel script I bought that requires full root access to MySQL. I can't figure out via CLI how to greant the mysql root user the full permissions to the database I created.
I ran this but it doesn't seem to have fixed my issue.
There's a database control panel script I bought that requires full root access to MySQL. I can't figure out via CLI how to greant the mysql root user the full permissions to the database I created.
I ran this but it doesn't seem to have fixed my issue.
Would appreciate help.mysql> GRANT ALL PRIVILEGES ON * . * TO 'root'@'localhost';
Query OK, 0 rows affected (0.00 sec)
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.01 sec)