MySQL忘记root密码
2021/12/22 19:21:51
本文主要是介绍MySQL忘记root密码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.修改MySQL的登录设置:
# vi /etc/my.cnf
在[mysqld]的段中加上一句: skip-grant-tables 保存并且退出vi。
2.重新启动mysqld
# /etc/init.d/mysqld restart ( 或service mysqld restart )
3. mysql -uroot -p 回车
mysql> USE mysql ;
4. 修改密码:
Mysql5.6:
mysql> update mysql.user set password=password('123456') where host='localhost' and user='root';
Mysql5.7及Mysql8:
mysql> update mysql.user set authentication_string=password('123456') where host='localhost' and user='root';
5.刷新权限
mysql> flush privileges ; mysql> quit;
6.将MySQL的登录设置修改回来
# vi /etc/my.cnf 将刚才在[mysqld]的段中加上的 skip-grant-tables 删除 保存并且退出vi。
7.重新启动mysqld
# /etc/init.d/mysqld restart ( 或service mysqld restart )
重新登录成功 ,root用户设置ok。
参考:
https://www.cnblogs.com/kevin-yang123/p/9923203.html
https://www.cnblogs.com/ivictor/p/9243259.html
这篇关于MySQL忘记root密码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-20部署MySQL集群入门:一步一步搭建你的数据库集群
- 2024-11-19部署MySQL集群学习:入门教程
- 2024-11-19如何部署MySQL集群:新手入门教程
- 2024-11-19Mysql安装教程:新手必看的详细安装指南
- 2024-11-18Mysql安装入门:新手必读指南
- 2024-11-18MySQL事务MVCC原理入门详解
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-15MySQL教程:初学者必备的MySQL数据库入门指南
- 2024-11-15MySQL教程:初学者必看的MySQL入门指南