Caused by: org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLException: Access denied for user 'nacos_devtest'@'10.6.11.24' (using password: YES) ### The error may exist in file [D:\IdeaProjects\chinaunicom-ruijin-lrc\target\classes\mapper\mysql\video\SysEquipmentInfoMapper.xml] ### The error may involve com.chinaunicom.ruijin.dao.video.ISysEquipmentInfoDao.newGetAllBuildingAxis ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLException: Access denied for user 'nacos_devtest'@'10.6.11.24' (using password: YES)什么意思
时间: 2024-04-03 21:37:14 浏览: 144
Mybatis报错: org.apache.ibatis.exceptions.PersistenceException解决办法
这个异常的意思是:在执行查询操作时,出现了连接数据库失败的情况。具体来说,是因为数据库连接用户('nacos_devtest')在IP地址为'10.6.11.24'的机器上使用密码('YES')连接数据库时,被拒绝了。
可能的原因包括:数据库连接字符串配置错误(例如用户名或密码错误)、数据库服务未启动、数据库服务配置错误(例如IP白名单设置错误),或者数据库连接池配置错误等等。需要进一步排查具体原因,才能解决这个问题。
阅读全文