MySQL Forums
Forum List  »  Newbie

Re: Warning: mysql_connect(): Client does not support authentication protocol
Posted by: Puiu Hrenciuc
Date: April 09, 2005 02:56AM

Change the password for the user you are connecting, using OLD_PASSWORD function.

Connect with mysql client.

USE mysql;

UPDATE user
SET password=OLD_PASSWORD('password_here')
WHERE user='user_name';

FLUSH PRIVILEGES;

Had the same problem a couple of times and I solved it this way.

Options: ReplyQuote


Subject
Written By
Posted
Re: Warning: mysql_connect(): Client does not support authentication protocol
April 09, 2005 02:56AM


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.