MySQL忘记root密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL忘记root密码相关的知识,希望对你有一定的参考价值。
vim /etc/my.cnf // [mysqld]下添加参数
[mysqld]
skip-grant-tables
重启mysql
systemctl restart mysqld
终端输入 msyql进入数据库
mysql>update mysql.user set authentication_string=password(‘新密码‘) where user=‘root‘ and host=‘localhost‘
以上是关于MySQL忘记root密码的主要内容,如果未能解决你的问题,请参考以下文章