下面由phpmyadmin教學欄位介紹phpMyAdmin無法登入MySQL伺服器/空密碼登入被禁止的解決方法,希望對需要的朋友有幫助!
系統:Windows
錯誤如下:
查閱了一些資料,有些說的方法如下:
Step1:將F:\xampp\phpMyAdmin\libraries的config.default.php中的一下欄位修改。
Step1:$cfg['Servers'][$i]['password'] = ''; //將此欄位修改為空白
Step2:$cfg['Servers'][$i]['nopassword'] = true;//將此欄位修改為true
o# # ##Step3:$cfg['Servers'][$i]['AllowNoPassword'] = true;
//將此欄位修改為true
Step1:使用另一個超級使用者的帳號密碼登入phpMyAdmin
Step2:
Step3:選擇修改密碼
在PHPMyAdmin中新用戶:grant all privileges on *.* to 'root'@'localhost' identified by "newpassvileges with new grant option;
#Step7:將F:\xampp\phpMyAdmin\libraries\config.default.php中的
$cfg['Servers'][$i]['password'] = '';
][$i ]['password'] = 'newpassword';
其中以root使用者為root 使用者的密碼。重新啟動Apache和mysqld.exe,使用新的帳號密碼登入phpMyAdmin即可。
以上是解決phpMyAdmin不能登入MySQL以及空密碼被禁止的問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!