The information in this section applies only before MySQL
5.7.5. Support for pre-4.1 password hashes is removed in
MySQL 5.7.5. This includes removal of the
mysql_old_password authentication plugin
and the OLD_PASSWORD()
function. Also, secure_auth
cannot be disabled, and
old_passwords cannot be set
to 1.
The current implementation of the authentication protocol uses a password hashing algorithm that is incompatible with that used by older (pre-4.1) clients. Attempts to connect to a 4.1 or higher server with an older client may fail with the following message:
shell> mysql
Client does not support authentication protocol requested
by server; consider upgrading MySQL client
To deal with this problem, the preferred solution is to upgrade all client programs to use a 4.1.1 or higher client library. If that is not possible, use one of the following approaches:
To connect to the server with a pre-4.1 client program, use an account that still has a pre-4.1-style password.
Reset the password to pre-4.1 style for each user that needs to use a pre-4.1 client program. This can be done using the
SET PASSWORDstatement and theOLD_PASSWORD()function. It is also necessary to first ensure that the authentication plugin for the account ismysql_old_password:mysql>
UPDATE mysql.user SET plugin = 'mysql_old_password'mysql>WHERE User = 'mysql>some_user' AND Host = 'some_host';FLUSH PRIVILEGES;mysql>SET PASSWORD FOR->'some_user'@'some_host' = OLD_PASSWORD('new_password');Substitute the password you want to use for “
new_password” in the preceding example. MySQL cannot tell you what the original password was, so you need to pick a new one.Tell the server to use the older password hashing algorithm by default:
Start mysqld with the
old_passwordssystem variable set to 1.Assign an old-format password to each account that has had its password updated to the longer 4.1 format. You can identify these accounts with the following query:
mysql>
SELECT Host, User, Password FROM mysql.user->WHERE LENGTH(Password) > 16;For each account record displayed by the query, use the
HostandUservalues and assign a password using one of the methods described previously.
The Client does not support authentication
protocol error also can occur if multiple versions
of MySQL are installed but client programs are dynamically
linked and link to an older library. Make sure that clients
use the most recent library version with which they are
compatible. The procedure to do this will depend on your
system.
The PHP mysql extension does not support
the authentication protocol in MySQL 4.1.1 and higher. This
is true regardless of the PHP version being used. If you
wish to use the mysql extension with
MySQL 4.1 or higher, you may need to follow one of the
options discussed above for configuring MySQL to work with
old clients. The mysqli extension (stands
for "MySQL, Improved"; added in PHP 5) is compatible with
the improved password hashing employed in MySQL 4.1 and
higher, and no special configuration of MySQL need be done
to use this MySQL client library. For more information about
the mysqli extension, see
http://php.net/mysqli.
For additional background on password hashing and authentication, see Section 7.1.2.4, “Password Hashing in MySQL”.
Edit the user containing username and host you want to use with. In the "Change Password" box below, you can choose whether using password or no. The solution is in there: Choose "MySQL 4.0 Compatible" and "Go".
I have solved my problem using this simple way.
On the client side, I used the following command to generate a 41-digit password:
SELECT PASSWORD('blablabla');
Then on the server side, I set the password to this 41-digit string:
SET PASSWORD FOR 'bob'@'somehost' = '*73C98624E32963F3D4828B9398FD3F67B8D58E40'
The client then connected flawlessly to the server.
The mysql download for Snow Leopard had the client libraries on board, I just had to give the ruby extconf.rb script the needed paths (ruby extconf.rb --with-mysql-dir=/usr/local/mysql --with-mysql-lib=/usr/local/mysql/lib --with-mysql-include=/usr/local/mysql/include), and make sure permissions on those files and directories were right.
I used the mysql-ruby-2.8.2.tar.gz version.
Once I make install-ed it, things worked. Thanks for all the help.
Connecting from PHP using Authentication parameters, from a user with incorrect "Plugin", makes PHP can't connect, and shown the error message "Warning: mysql_connect() [function.mysql-connect]: Client does not support authentication protocol requested by server; consider upgrading MySQL client"
Best regards
you may need to disable this also if using an old mysql client.
http://dev.mysql.com/doc/refman/5.6/en/server-options.html#option_mysqld_secure-auth