首页 > 数据库技术 > 详细

MySQL5.7修改用户密码

时间:2020-01-15 20:25:43      阅读:178      评论:0      收藏:0      [点我收藏+]

在MySQL 5.7 password字段已从mysql.user表中删除,新的字段名是“authenticalion_string”.

更新root的密码

格式:

  update user set authentication_string=password(‘新密码‘) where user=‘root‘ and Host=‘localhost‘;

例:

选择数据库

use mysql;

修改密码

update user set authentication_string=password(123.com) where user=testuser and Host=%;

刷新权限

flush privileges;

MySQL5.7修改用户密码

原文:https://www.cnblogs.com/tianleblog/p/12198416.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!