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
基础教程推荐
- 从字符串 TSQL 中获取数字 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
