java.sql.SQLException: Access denied for user '192.168.23.129'@'localhost' (using password: YES)
时间: 2023-09-15 19:21:13 浏览: 263
Jmeter在操作MySQL数据库的时候出现Access denied for user ‘root’@’localhost’ (using password:YES)
这个错误提示:"java.sql.SQLException: Access denied for user '192.168.23.129'@'localhost' (using password: YES)" 表示用户 '192.168.23.129'@'localhost' 的访问被拒绝,原因是密码不正确。这个错误通常是由于在配置文件中输入的密码与数据库中的密码不匹配所导致的。你需要检查你的配置文件,确保密码输入正确。
如果你使用的是正确的application.yml文件,应该检查一下你的配置是否正确。确保在配置文件中指定了正确的用户名和密码,并且密码与数据库中的密码一致。比如,确认你的用户名是'root',密码是'000730'。同时确保你的数据库连接URL正确。
如果你使用的是错误的application.yml文件,那可能是因为在配置文件中没有正确地指定用户名和密码,或者没有使用引号将密码括起来。你需要修改配置文件,确保用户名和密码都是正确的,并且密码用引号括起来,比如:"root" 和 "000730"。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [java.sql.SQLException: Access denied for user ‘root’@’localhost’ (using password: YES)](https://download.csdn.net/download/weixin_38609128/14832930)[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%"]
- *2* *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 ]
阅读全文