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

Linux下mysql的root密码修改方法(ERROR 1054)

时间:2017-08-22 01:39:43      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:密码修改   .net   ref   err   ror   code   sql   ace   修改   

以安全模式启动mysql,可以直接以root身份登录,然后重设密码。下面是具体步骤

1.停掉在运行的MySQL服务:

service mysqld stop

2.安全模式启动mysql:

sudo mysqld_safe --skip-grant-tables --skip-networking &

3.直接用root登录,无需密码:

mysql -uroot -p

4.重设密码:

update usersetauthentication_string=password(‘password‘) where user=‘root‘;  >> mysql5.6及以下

    
update user set authentication_string=password(‘password‘) where user=‘root‘;  >>mysql5.7+

5.刷新并重启

flush privileges;

Linux下mysql的root密码修改方法(ERROR 1054)

标签:密码修改   .net   ref   err   ror   code   sql   ace   修改   

原文地址:http://www.cnblogs.com/dudumao/p/7407399.html

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