I guess you haven't written the
MySQL root password in the config.inc.php file.
This password is not the same as the system root/admin password. You can find the 76 characters MySQL root password in
/root/.my.cnf
But for your own use, you should create another local MySQL DBA account and use it instead of the root one (never delete this root account : the system needs it).
To create such an admin account, you can follow these commands :
[root@sme-60 root]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10799 to server version: 3.23.56
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> GRANT ALL PRIVILEGES ON *.* TO 'new_dba'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
mysql> FLUSH PRIVILEGES;
mysql> QUIT;
You just have to type what's in blue ans modify what's in red with your values. You can also modify 'localhost' to an IP range or a specific IP address if you need.
Don't forget the semicolons at the end of each line.
