Recently I installed MySQL 4.1 on my W2K machine and tried to connect to it. But could not. It threw the error Client does not support authentication protocol requested by server; consider upgrading MySQL client Well, I was least expecting such an error to occur. Actually, this error has revisited me. Long back, when I installed MySQL 4.1 on my previous workstation, I had encountered this error. So, the solution was easy. Just change MySQL's password hashing algorithm for your password. So, how how u do that? mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd') WHERE Host = 'some_host' AND User = 'some_user'; mysql> FLUSH PRIVILEGES; Thats it :-) Actually, MySQL offers a reason for the same MySQL 4.1 and up uses an authentication protocol based on a password hashing algorithm that is incompatible with that used by older clients. To solve this problem, you should use one of the following approaches: Upgrade all client programs to use a 4.1.1 o...