Centos7下mariadb忘记root密码处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7下mariadb忘记root密码处理相关的知识,希望对你有一定的参考价值。
1,停止mariadb服务
??????????systemctl stop mariadb
??????? 2,修改配置文件 vim /etc/my.cnf
??????????? 在[mysqld]下添加skip-grant-tables
??????????? 意思是忽略密码,?保存并退出
??????? 3,启动Mariadb
?????????systemctl start mariadb
??? ???? 4,修改密码
??????????? mysql
use mysql;
UPDATE user SET Password = password ( ‘new-password‘ ) WHERE User = ‘root‘ ;
????????????flush privileges ;
??????????? quit
??????? 5,改回配置,重启服务
vim /etc/my.cnf 删除skip-grant-tables
???????????systemctl restart mariadb
6 ,进入数据库
mysql -uroot -p
输入新密码new-password即可
参考https://blog.csdn.net/linux_s2018/article/details/80762820
以上是关于Centos7下mariadb忘记root密码处理的主要内容,如果未能解决你的问题,请参考以下文章