ERROR 1045 (28000): Access denied for user '@root'@'localhost' (using password: YES)
时间: 2023-09-06 07:11:13 浏览: 189
ERROR 1045 (28000): Access denied for user ''root''@''localhost'' (using password: YES)实用解决方
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 这个错误通常表示无法以指定的用户和密码连接MySQL数据库。引用中提到了一种可能的解决方法,您可以尝试按照以下步骤进行操作:
1. 打开在创建MySQL容器时挂载的conf目录下的mysqld.cnf文件。
2. 在mysqld.cnf文件中查找并编辑以下行:
```
# bind-address = 127.0.0.1
```
将其修改为:
```
bind-address = 0.0.0.0
```
3. 保存并关闭mysqld.cnf文件。
这样做的目的是允许来自任何IP地址的连接。
另外,还请确保您在连接时使用了正确的用户名和密码。如果您不确定,请参考您的数据库配置文件或联系数据库管理员以获取正确的凭证信息。
如果问题仍然存在,请确保您的用户名和密码没有任何错别字或特殊字符。同时,还可以尝试使用root用户以及其他已知的有效凭证进行连接,以确认问题是否出在用户名和密码上。
请注意,这只是一种可能的解决方法,具体的解决方案可能会因您的具体情况而有所不同。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: NO)解决办法](https://blog.csdn.net/m0_46278037/article/details/113923726)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *3* [连腾讯云上的docker上的mysql报错ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ ...](https://download.csdn.net/download/weixin_38732519/14074606)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文