这两天做了一个程序,总是会报错误日志:
错误信息如下:
java.sql.SQLException: Io 异常: The Network Adapter could not establish the connection
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387)
at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:439)
at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
at java.sql.DriverManager.getConnection(DriverManager.java:582)
at java.sql.DriverManager.getConnection(DriverManager.java:154)
at org.logicalcobwebs.proxool.DefaultConnectionBuilder.buildConnection(DefaultConnectionBuilder.java:39)
at org.logicalcobwebs.proxool.Prototyper.buildConnection(Prototyper.java:159)
at org.logicalcobwebs.proxool.Prototyper.sweep(Prototyper.java:102)
at org.logicalcobwebs.proxool.PrototyperThread.run(PrototyperThread.java:44)
但是并不影响操作数据库,插入、更新等操作一样可以执行,也没有在意。
今天领导问起来,因为系统会自动检查错误日志,会发邮件给大家。因此,必须要解决了。
在网上搜了一下一般的解决办法如下:
这种异常的出现大致上有下面几种:
1。IP错误。
在设置URL时错误,例如:jdbc:oracle:thin:@192.168.248.154:1521:test
数据库服务器不正确:ping 服务器IP是否正确。不正确,将URL更改为正确
端口号错误:一般不会错误。
2。防火墙
如果机器上安装有放火墙,可能是服务器端口号屏蔽而造成的。关闭防火墙后,尝试重新连接。
3。数据库监听未启动
启动Oracle的监听服务
4.如果DB是unix/linux系统上,则把 /etc/hosts中的IP记录到客户端(此方法为DBA提供)
在我这问题上没有起到作用。
5.如果通过pl/sql查询的话,
tnsnames.ora中是否添加了相应的内容。
最后一点是我本次解决的办法,记得之前有同学分享了JDBC版本的问题,我查看了连接的服务器上数据库
版本为oracle 10.2。我执行程序的驱动包为ojdbc14.jar,该驱动包为随oracle10.2发布的驱动包,
按理说 不应该有问题的。后来我看到其中有说ojdbc14.jar支持jdk1.4和jdk1.5。因此我去查看了
java jdk安装目录,/usr/java,是jdk1.6.0_21版本的。随ORCALE 11G发布的jdbc驱动包为ojdbc6.jar,
支持jdk1.6,高版本的驱动包应该具有兼容性吧。于是删掉原来的ojdbc14.jar,换成ojdbc6.jar。重跑程序,
没有error日志。问题解决。
参考网址http://apps.hi.baidu.com/share/detail/47434067
分享到:
相关推荐
The Network Adapter could not establish the connection
NULL 博文链接:https://lbay.iteye.com/blog/784874
解决了oracle11g数据库安装后,使用自带的sqlDeveloper工具连接数据库,总是报The Network Adapter could not establish the connection这个问题
今天小编就为大家分享一篇关于Myeclipse链接Oracle等数据库时lo exception: The Network Adapter could not establish the connection,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起...
System.out.println("Connected to the database!"); // ... 其他数据库操作 conn.close(); } catch (ClassNotFoundException | SQLException e) { e.printStackTrace(); } } } ``` 在上述代码中,`hostname`...
4. Weblogic 连接 Oracle 问题:The Network Adapter could not establish the connection 解决方法: * 可能是服务器的监听停掉了,是数据库的问题,与应用无关;应该先检查一下 Oracle 是否正常,用 sql*plus ...
2. [The Network Adapter Could Not Establish The Connection 解决方案](http://example.com/network-adapter-error) 3. [Oracle thenetworkadapter could not establish the connection]...
当遇到“连接不到数据库”的问题时,通常会显示如"Io异常: The Network Adapter could not establish the connection"这样的错误信息。这个异常表明应用程序无法与数据库建立网络连接,可能由多种原因造成。以下是...
当你尝试`Test Driver`时,可能会遇到“Error while performing database login with the oracle.jdbc.driver.OracleDriver driver: Io exception: The Network Adapter could not establish the connection”的错误...
7. **The Network Adapter could not establish the connection url user pwd dialect** 数据库连接失败,原因可能是数据库URL、用户名、密码或方言设置不正确。检查数据库连接参数是否正确无误,包括URL、用户名、...