忘记root密码--重置密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了忘记root密码--重置密码相关的知识,希望对你有一定的参考价值。
(1)停止mysql服务
(2)启动mysql服务
mysqld_safe --defaults-file=/etc/my.cnf --skip-grant-tables --skip-networking &
(3)无密码登录,并修改root用户密码
update mysql.user set password=password("password") where user=‘root‘ and host=‘localhost‘;
(4)关闭mysql服务
mysqladmin -u root -p shutdown
(5)正常启动mysql服务器
以上是关于忘记root密码--重置密码的主要内容,如果未能解决你的问题,请参考以下文章
mysql 忘记root密码,重置密码,及重置密码后权限问题不能登录的解决方案