java.sql.SQLException: Access denied for user 'root'@'hadoop102' (using password: YES)
时间: 2023-09-07 08:11:55 浏览: 170
这个异常是由于使用root用户登录MySQL数据库时密码错误导致的。你可以尝试以下解决方法:
1. 确保你输入的密码是正确的,可能是输错了或者密码被更改了。重新输入密码并确保密码的正确性。
2. 检查MySQL数据库的授权设置。你可以使用下面的SQL语句给root用户提升权限:
```
GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1' IDENTIFIED BY 'root';
```
这个语句会给root用户在所有数据库和所有表上拥有全部权限。执行完这个语句后,记得刷新权限:
```
FLUSH PRIVILEGES;
```
3. 确认你的数据库连接配置文件(如application.yml)中的用户名和密码正确。比如,确认你的用户名是root,密码是正确的密码。
希望以上方法可以帮助你解决这个问题。如果问题仍然存在,请提供更多相关信息以便我更好地帮助你。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [已解决java.sql.SQLException: Access denied for user ‘root‘@‘localhost‘ (using password: YES)异常...](https://blog.csdn.net/weixin_50843918/article/details/129702577)[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* [ java.sql.SQLException: Access denied for user ‘root‘@‘localhost‘ (using password: YES)](https://blog.csdn.net/m0_65041486/article/details/126180450)[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 ]
阅读全文