Lassie Posted October 12, 2006 Share Posted October 12, 2006 I have just upgraded from mysql 4.0 to 4.1 and now get the following error message:Could not connect to MySQL: Client does not support authentication protocol requested by server; consider upgrading MySQL client:Can anyone shed light on this please. Link to comment https://forums.phpfreaks.com/topic/23785-error-mysql-connection/ Share on other sites More sharing options...
craygo Posted October 12, 2006 Share Posted October 12, 2006 You have to update your mysql password to use old style passwords. you have to do this thru the mysql command line1. log in as root2. mysql> use mysql3. mysql> UPDATE user SET Password = OLD_PASSWORD('your_password_here') WHERE User = 'username_here' AND Host = 'hostname_here';4. mysql>FLUSH PRIVILEGES;Should be all set after thatRay Link to comment https://forums.phpfreaks.com/topic/23785-error-mysql-connection/#findComment-108058 Share on other sites More sharing options...
Lassie Posted October 23, 2006 Author Share Posted October 23, 2006 Thanks Ray Link to comment https://forums.phpfreaks.com/topic/23785-error-mysql-connection/#findComment-113088 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.