Ubuntu系统忘记mysql root密码
2022/7/4 2:21:06
本文主要是介绍Ubuntu系统忘记mysql root密码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1. 停止mysql服务
service mysql stop
2. 修改my.cnf文件
sudo find / -name my.cnf
sudo vim /etc/mysql/my.cnf
添加如下内容:
[mysqld] skip-grant-tables
3. 启动mysql服务
service mysql restart
4. 更改mysql root用户密码
mysql
use mysql;
update user set authentication_string='password' where user='root';
quit;
5. 再次修改my.cnf文件
sudo vim /etc/mysql/my.cnf
将之前添加的内容注释掉
6. 再次重启mysql
service mysql restart
mysql -u root -p
参考资料: https://blog.csdn.net/luckytanggu/article/details/80251833
这篇关于Ubuntu系统忘记mysql root密码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程
- 2024-11-01部署MySQL集群学习:新手入门教程
- 2024-11-01部署MySQL集群入门:新手必读指南
- 2024-10-23BinLog入门:新手必读的MySQL二进制日志指南
- 2024-10-23Binlog入门:MySQL数据库的日志管理指南