[Mysql]Client does not support authentication protocol error

dms

Joined: 2005-01-17
Posts: 17
Posted: Mon, 2005-01-17 20:43

Not a problem, but a solution / suggestion.

I was trying to install gallery2 with no avail at step 5.

I was getting the error: Client does not support authentication protocol

After reading the mysql manual (I am using 4.1.9 on freebsd and setting up from a remote machine on the same subnet)

manual.html#Old_client

and it described having to set the password to the old type, which fixed the problem i was having.

Will gallery2 be upgraded to support the new password format?

(hint for stuck people)

mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd')
-> WHERE Host = 'some_host' AND User = 'some_user';
mysql> FLUSH PRIVILEGES;

 
bharat
bharat's picture

Joined: 2002-05-21
Posts: 7994
Posted: Tue, 2005-01-18 04:13

Would you please file a bug about this on http://sf.net/projects/gallery for us? Thanks!

 
dms

Joined: 2005-01-17
Posts: 17
Posted: Tue, 2005-01-18 12:15

bug posted