以下由phpmyadmin教學欄位來介紹關於安裝最新版本MySQL導致登入phpMyAdmin錯誤的解決方法,希望對需要的朋友有幫助!
安裝最新版本MySQL導致登入phpMyAdmin錯誤
安裝了最新版mysql以後用phpMyadmin登入,遇到錯誤
第一種報錯:
mysqli::real_connect(): (HY000/2002): No such file or directory
解決方案:
把/libraries/config.default.php 和/config. sample.inc.php檔案中的
$cfg['Servers'][$i]['host'] = 'localhost'
改為
$cfg['Servers'][$i]['host'] = '127.0.0.1';
#第二種錯誤:
mysqli_real_connect(): The server requested authentication method unknown to the client [caching_sha2_password] mysqli_real_connect(): (HY000/2054): The server requested authentication method unknown to the client
解決方法:
終端登陸mysql
mysql -u root -p
修改授權使用者
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'
password為mysql登陸密碼
推薦教學:PHPMyAdmin
以上是安裝最新版本MySQL導致登入phpMyAdmin報錯的詳細內容。更多資訊請關注PHP中文網其他相關文章!