基本的に、ここで起こっていることは、[... / phpMyadmin / config.inc.php]ファイルに間違ったクレデンシャルがあることです。これは、別のmysqlインスタンスがインストールされていて、このファイルで使用するユーザー名とパスワードが異なる。一致するように上記のファイルのユーザー名とパスワードを変更する必要があります。
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root'; //Change this to your values
$cfg['Servers'][$i]['password'] = 'root'; //Change this to your values
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';