分类: Mysql/postgreSQL
2007-03-17 18:05:06
shell>mysql
Client does not support authentication protocol requested
by server; consider upgrading MySQL client
mysql>orSET PASSWORD FOR
->'
some_user
'@'some_host
' = OLD_PASSWORD('newpwd
');
mysql>UPDATE mysql.user SET Password = OLD_PASSWORD('
newpwd
')
->WHERE Host = '
some_host
' AND User = 'some_user
';
mysql>FLUSH PRIVILEGES;
这样就OK了