Linux安装mariadb后报错 Access denied for user 'root'@'localhost' (using password: YES)
时间: 2023-08-27 12:17:00 浏览: 172
这个报错是因为在访问数据库时,使用的用户名为'root'@'localhost'的用户被拒绝访问,原因是密码错误。根据引用的信息,有几种可能的解决方法。
第一种方法是根据引用的信息,更新root角色的加密方式,并设置新的密码。可以使用以下命令来执行更新操作:
```
update mysql.user set authentication_string=PASSWORD('123'), plugin='mysql_native_password' where user='root';
```
第二种方法是根据引用的信息,重新设置root用户的密码。可以使用以下命令来执行密码重置操作:
```
update user set password=password('123')where user='root';
flush privileges;
```
无论采用哪种方法,都需要确保新设置的密码与数据库配置文件中的密码一致。在完成密码更新后,重新启动mariadb服务并尝试登录,应该就可以成功访问数据库了。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [Mariadb 下root加密方式导致业务报错 Access denied for user ‘root‘@‘localhost‘ (using password:...](https://blog.csdn.net/weixin_42728126/article/details/127302022)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文