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

ubuntu mysql 设置root密码

时间:2020-04-01 19:30:59      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:pre   HERE   you   date   sql   lang   flush   pass   password   

修改root用户的的密码
这里是关键点,由于mysql5.7没有password字段,密码存储在authentication_string字段中,password()方法还能用

在mysql中执行下面语句修改密码

show databases;
 
use mysql;
  
update user set authentication_string=PASSWORD("yourpassword") where user=‘root‘;
  
update user set plugin="mysql_native_password";
  
flush privileges;
  
quit;



链接:https://www.jianshu.com/p/3821c2603b92

ubuntu mysql 设置root密码

标签:pre   HERE   you   date   sql   lang   flush   pass   password   

原文地址:https://www.cnblogs.com/longchang/p/12614662.html

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