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;