Exception in thread "main" java.sql.SQLException: Access denied for user 'root'@'192.168.23.60' (using password: YES)
时间: 2023-11-16 21:55:48 浏览: 113
这个错误提示表明你的Java程序无法使用给定的用户名和密码连接到MySQL数据库。可能的原因是用户名或密码不正确,或者该用户没有被授权访问该数据库。你可以尝试检查用户名和密码是否正确,并确保该用户被授权访问该数据库。另外,你还可以检查MySQL服务器的防火墙设置,确保允许来自你的Java程序所在机器的IP地址的连接。
相关问题
Exception in thread "main" java.sql.SQLException: Access denied for user 'root'@'liugonli' (using password: YES)
这个异常"Exception in thread "main" java.sql.SQLException: Access denied for user 'root'@'liugonli' (using password: YES)"是指用户访问被拒绝的错误,原因是密码不正确。根据引用中的信息,你明确配置了正确的密码,但是问题出现在yml文件的配置上。你可以检查一下yml文件中的数据库配置是否正确。同时,根据引用中的描述,你使用了逆向工程-MyBatis Generator来生成代码,在代码中指定了一个mbg.xml文件作为配置文件。你发现问题是因为这个mbg.xml文件中的数据库密码没有正确修改。请确保你的mbg.xml文件中的数据库配置正确,并将密码修改为正确的密码,然后再次尝试运行代码。
Exception in thread "main" java.sql.SQLException: Access denied for user ''@'localhost' (using password: NO)
Exception in thread "main" java.sql.SQLException: Access denied for user ''@'localhost' (using password: NO) 报错提示中显示用户访问被拒绝,原因是密码为空。可能是您在配置文件中没有正确设置密码或者密码设置错误。建议您检查配置文件中的密码设置,并确保密码正确设置。
阅读全文