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


- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- SQL 临时表问题 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01