C:\Users\19878>mysql -v ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)
时间: 2023-09-21 09:03:45 浏览: 95
解决mysql ERROR 1045 (28000)-- Access denied for user问题
出现错误"ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)"是因为MySQL root用户未设置密码,导致拒绝了访问请求。为了解决这个问题,你可以尝试使用以下命令登录MySQL:mysql -u root -p。
另外,如果你已经设置了密码,但是仍然遇到了"ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)"的错误,你可以尝试以下步骤来解决问题:
1. 打开mysqld.cnf文件,该文件位于创建MySQL容器时挂载的conf目录下。
2. 在mysqld.cnf文件中找到相关配置,可能是"mysqlId.cnf",并确保用户名和密码正确。
3. 检查MySQL的用户访问权限,确保root用户具有适当的权限。你可以使用GRANT语句来为用户授予权限。
通过检查配置文件和用户权限,你应该能够解决"ERROR 1045 (28000): Access denied"错误。<span class="em">1</span><span class="em">2</span>
#### 引用[.reference_title]
- *1* [登录mysql数据库出现 : ERROR 1045 (28000): Access denied for user ‘ODBC‘@‘localhost‘ (using ...](https://blog.csdn.net/m0_53870075/article/details/123458431)[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_1"}}] [.reference_item style="max-width: 50%"]
- *2* [连腾讯云上的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_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文