centos7下mariadb 忘记密码处理方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7下mariadb 忘记密码处理方法相关的知识,希望对你有一定的参考价值。

systemctl stop mariadb ==>停止mariadb数据库

mysqld_safe --skip-grant-table ==>进入单机模式

use mysql;==>进入mysql库

update user set password=password(新密码) where user=‘root‘ and host=‘localhost‘;==>设置新密码

flush privileges;==>刷新

新开窗口 mysqladmin -uroot -p shutdown ==>新密码测试关掉数据库,成功关闭就证明修改成功

systemctl start mariadb ==>重启服务


本文出自 “蓝色的天空” 博客,请务必保留此出处http://shurk.blog.51cto.com/1134443/1745539

以上是关于centos7下mariadb 忘记密码处理方法的主要内容,如果未能解决你的问题,请参考以下文章

Centos7 之 MariaDB(Mysql) root密码忘记的解决办法

centos7下Jenkins管理员admin密码忘记后处理方法

Mariadb的root密码忘记后的解决方法

CentOS7下mysql忘记root密码的处理方法

[转]Mariadb的root密码忘记后的解决方法

CentOS7下mysql忘记root密码的处理方法