MySQL Old Passwords

We had a application using version 4 libraries of MySQL to talk to a MySQL 5 database which reported:<br />
Error: Client does not support authentication protocol requested by server; consider upgrading MySQL client


The temporary solution:

1
SET PASSWORD FOR

1
'<em class='replaceable'><code>some_user

‘@’

1
some_host

‘ = OLD_PASSWORD(‘

1
newpwd

‘);




Post comment