Tag Archives: phpmyadmin

解决方案:phpMyAdmin无法登陆,#1251 Client does not support authentication protocol

今天遭遇phpMyAdmin无法登陆,提示: #1251 – Client does not support authentication protocol requested by server; consider upgrading MySQL client 如图: 用户名,密码,权限均正确,为何登录不了呢? 根据提示看来是认证有些改变。 mysql版本:5.0.45 MySQL client version: 4.0.24 “SELECT * FROM mysql.user” 看看,密码有长有短,还有*号。 如何解决呢?其实只需要对你创建的用户再执行下面这条 update mysql.user SET Password = OLD_PASSWORD(‘your_password’) where Host = ‘%’ … Continue reading

Posted in Programming | Tagged , , | Leave a comment