Programming Tutorials

(追記) (追記ここまで)

ERROR 1251: Client does not support authentication protocol requested by server; consider upgrading MySQL client

By: Emiley J. in MySQL Tutorials on 2011年03月18日 [フレーム]

While trying to remotely login to your MySQL server if you are getting this error: ERROR 1251: Client does not support authentication protocol requested by server; consider upgrading MySQL client then it means that you are still using mysql 4.1 or older versions on your computer while the MySQL server that you are connecting to is of higher version.

It is easy to solve this issue though.

First goto the MySQL Server machine or if it is not accessible, then SSH or remote desktop to the server machine.

Next in that server, login to your server locally and reach the mysql prompt.

Then run this command

SET PASSWORD FOR 'username'@'IPordomain' = old_PASSWORD('userpassword');

Here replace username with your username and replace IPordomain with the IP from which you will be logging in later. Then replace userpassword with your password.

That's it. You can now login again from your PC. What you just did is to let MySQL server know that you are still using the old password hashing mechanism for that particular user.



(追記) (追記ここまで)


Add Comment

JavaScript must be enabled for certain features to work
* Required information
1000

Comments (1)

Sort By
Topic: ERROR 1251: Client does not support authentication protocol requested by server; consider upgrading MySQL client
0/5 (0)
Avatar
New
Norman
Avatar
8
3
0
Apr 2023
Top Poster
Most Likes
First Poster
Normansays...

You saved my day. Thank you.

0
0
Share a link to this comment

Most Viewed Articles (in MySQL )

Latest Articles (in MySQL)

(追記) (追記ここまで)
(追記) (追記ここまで)

Related Tutorials

AltStyle によって変換されたページ (->オリジナル) /