MySQL Forums
Forum List  »  Connector/ODBC

Re: new ODBC driver error
Posted by: Hemant Dangi
Date: December 12, 2013 04:21AM

Hello John,

Thanks for showing interest in Mysql Connector/ODBC.

secure_auth is enabled which causes the server to block connections by clients that attempt to use accounts that have passwords stored in the old (pre-4.1) format.

Either, you can disable secure_auth in my.cnf
secure_auth = 0

or, upgrade your password to use newer password format using below method:
> set old_passwords=0; set password for 'user'@'%' = password('oldpassword');

Thanks.

Options: ReplyQuote


Subject
Written By
Posted
December 11, 2013 04:16PM
Re: new ODBC driver error
December 12, 2013 04:21AM
December 12, 2013 08:23PM


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.