You are using mariadb as an anonymous user(您正在以匿名用户身份使用 mariadb)
问题描述
所有权限都被拒绝,我所有的数据库似乎都被删除了.当我尝试更改密码时,我收到主题中提到的错误.最初没有设置密码,执行以下命令后开始出现此行为
All the privileges have been denied and all my databases seem to have been deleted. I get the error mentioned in the subject when I try to change the password. Initially there was no password set and this behaviour started after executing the following command
update mysql.user set password=password('newpass') where user='root';
我输入mysql使用:
I enter mysql using:
mysql -u root
我尝试执行的每个命令都会出现访问被拒绝错误.我尝试在 google 上冲浪,但没有找到解决问题的方法.
Every command I try to execute gives me access denied error. I tried surfing on google but did not get a solution to solve the issue.
推荐答案
还要设置用户的插件,每次刷新权限
You must set the plugin of the user too, and flush privileges everytime
> update mysql.user set password=password('newpass') where user='root';
> flush privileges;
> update mysql.user set plugin='mysql_native_password' where user='root';
> flush privileges;
然后在数据库实例启动时检查您是否使用匿名用户:在您的 /etc/my.cnf 中删除/注释任何看起来像这样的行
Then check you are not using an anonymous user when the database instance starts: in your /etc/my.cnf remove/comment any line which looks like this
skip-grant-tables #comment with #
然后重启数据库
service <db> restart
这篇关于您正在以匿名用户身份使用 mariadb的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:您正在以匿名用户身份使用 mariadb
基础教程推荐
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 在多列上分布任意行 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
