MariaDB 找回 root 密码的方法

MariaDB 安装时,默认会创建一个mysql@localhost特权用户。如果忘记超级管理员可以使用这个账号登录后修改密码或者主机。

1、使用命令su mysql切换到mysql账号

2、使用命令mysql登录到MariaDB

用户操作相关语句

-- 创建用户
create user 'tester'@'%' identified by 'password';
-- 修改密码
alter user 'tester'@'%' identified by 'new12345';
-- 修改用户
rename user 'root'@'localhost' to 'root'@'%';
-- 管理权限
grant all privileges on `testdb`.* to 'tester'@'%' with grant option;
remove all privileges on `testdb`.* from 'tester'@'%';
-- 刷新授权
flush privileges;

相关阅读

MySQL 找回 root 密码的方法

文章作者: 若海; 原文链接: https://www.rehiy.com/post/466/; 转载需声明来自技术写真 - 若海

添加新评论