连接oracle数据库报错:java.sql.SQLException: Io 异常: The Network Adapter could not establish the connection

时间:2024-03-16 11:08:45

我自己遇到的问题:使用idea去用ojdbc驱动去获取oracle数据库连接失败,报这个错。

1.我使用navicat能够连接上数据库,但是在java代码中去获取连接就会报错

连接oracle数据库报错:java.sql.SQLException: Io 异常: The Network Adapter could not establish the connection

2.通过咨询老师,得知idea默认的是IPV6,所以我们需要在启动类中添加 -Djava.net.preferIPv4Stack=true。

连接oracle数据库报错:java.sql.SQLException: Io 异常: The Network Adapter could not establish the connection

然后你可以进行测试连接,查看是否能够顺利连接,或者报错变成了Connection reset;

3,如果报错,直接修改$JAVA_HOME/jre/lib/security路径下的java.security文件。把securerandom.source=file:/dev/random修改成securerandom.source=file:/dev/./urandom。再尝试连接。我的是连接成功了。特此来记录一下