mysql 忘记密码
Posted kingle66
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 忘记密码相关的知识,希望对你有一定的参考价值。
一, 停止mysql程序
/etc/init.d/mysqld stop 或者 kill 杀mysql的进程id
通过安全模式启动数据库
mysqld_safe --skip-grant-tables --skip-networking &
查看原来数据库密码字段信息
更改密码:
5.6版本
update mysql.user set password=PASSWORD(\'123\') where user=\'root\' and host=\'localhost\';
5.7版本以上
update mysql.user set authentication_string=PASSWORD(\'123\') where user=\'root\' and host=\'10.0.0.%\';
以上是关于mysql 忘记密码的主要内容,如果未能解决你的问题,请参考以下文章