首页 > 数据库 > MySQL > 正文

MYSQL5.7 修改数据库密码

2024-07-24 12:59:52
字体:
来源:转载
供稿:网友

MySQL5.7以下版本的数据库密码使用的是

mysql这个数据库里的user表的passWord这个字段,

修改密码只需:

1.update MySQL.user setpassword=password('root') where user='root' ;2.flush PRivileges;可是到了5.7版本,user表里就没有了password这个字段了,

要想修改密码则需要用authentication_string这个字段:

1.update MySQL.user set authentication_string=password('root') where user='root';

2.flush privileges;

共勉~


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