centos mysql忘记密码
Posted 北方乐逍遥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos mysql忘记密码相关的知识,希望对你有一定的参考价值。
1.停止mysql 服务:service mysqld stop;
2.vim命令打开mysql配置文件my.cnf(位置一般为:/etc/my.cnf)
3.在mysqld进程配置文件中添加skip-grant-tables,添加完成后保存。
4.重新打开mysql服务:service mysqld stop;
5.登陆mysql:mysql -u root -p; 不用输入密码登录mysql;
6.update user set password=password(‘newpassword‘) where user=‘root‘ (5.7以前版本)
update user set authentication_string=password(‘newpassword‘) where user=‘root‘ (5.7及以后版本)
7.在mysqld进程配置文件中注释skip-grant-tables,添加完成后保存
8.重启mysql服务
以上是关于centos mysql忘记密码的主要内容,如果未能解决你的问题,请参考以下文章
Linux CentOS 中修改 MySQL 密码(Linux CentOS 中忘记了 MySQL 密码)
Linux CentOS 中修改 MySQL 密码(Linux CentOS 中忘记了 MySQL 密码)