错误:
“ERROR 1356 (HY000): View ‘mysql.user’ references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them”,
解决:
表明在您的 MariaDB 版本中,‘user’ 表已经不存在,由于版本不同的MariaDB解决方案也不同。 如果你的版本在10.4.4以上,你可以使用如下命令重置密码 ALTER USER 'root'@'localhost' IDENTIFIED BY 'newpassword'; 如果你的版本在10.4.4之前,你可以使用如下命令重置密码 SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpassword'); 记得重启mysql服务,并使用新密码登录MariaDB。
标签:10.4,密码,报错,版本,mysql,MariaDB From: https://www.cnblogs.com/lucktomato/p/17189518.html