मूल रूप से यहां जो हो रहा है वह यह है कि आपके [.../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'] = '';