1.使用debian系统root账号登录,以下命令首次进入mariadb
mysql -u root
2.将mariadb root plugin更新为
update user set plugin='mysql_native_password' where user='root'
3.flush privileges 并重启mariadb 服务
systemctl restart mysql
4.修改mariadb root密码
update user set authentication_string=PASSWORD("你的密码") where user="root";