Linux下mysql的root密码修改方法(ERROR 1054)
Posted dudumao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下mysql的root密码修改方法(ERROR 1054)相关的知识,希望对你有一定的参考价值。
以安全模式启动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)的主要内容,如果未能解决你的问题,请参考以下文章
Linux下修改Mysql的用户(root)的密码的俩种方法