首页 > 数据库 > MySQL > 正文

MYSQL4.1版本的问题

2024-07-24 12:54:57
字体:
来源:转载
供稿:网友
好久没有升级我的mysql乐 没想到刚升级就出错 然后上网查了查 原来是这样子的 mysql 4.1 and up uses an authentication protocol based on a password hashing algorithm that is incompatible with that used by older clients. .....
请使用以下两种方法之一

其一:

mysql> set 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;

 -->
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表