Re: Client does not support authentication protocol requested by server; consider upgrading MySQL client
Posted by: Hemix
Date: October 04, 2004 03:08AM

Well, I had the same problem (but whitout using BytFx), here is how I resolved it :

In mysql console, type "use mysql;" to choose mysql database.

Then type :
UPDATE user SET password = old_password('yourpassword') WHERE user = 'theuser';

'theuser' is the user you're using to connect to the database with your application.

and then type
FLUSH PRIVILEGES;

Maybe now that will work.

http://dev.mysql.com/doc/mysql/en/Old_client.html

Options: ReplyQuote


Subject
Written By
Posted
Re: Client does not support authentication protocol requested by server; consider upgrading MySQL client
October 04, 2004 03:08AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.