码迷,mamicode.com
首页 > 数据库 > 详细

mysql修改密码

时间:2019-01-10 15:33:17      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:class   ges   local   use   ring   命令   str   pass   修改密码   

进入mysql, 执行如下命令: 

SET PASSWORD FOR root@localhost = PASSWORD(newpass);

5.7以后版本修改密码: 

use mysql;
select plugin from user where user = root;
# 将指修改为默认值
update user set plugin=mysql_native_password;
# 修改密码
update user set authentication_string=password(root) where user=root and host=localhost;
# 刷新权限
flush privileges;
# 修改密码
alter user root@localhost identified by newPassword;

 

mysql修改密码

标签:class   ges   local   use   ring   命令   str   pass   修改密码   

原文地址:https://www.cnblogs.com/hujingnb/p/10246226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!