`

Oracle:The Network Adapter could not establish the connection

阅读更多

开始的时候用MyEclipse  Database Explorer 连接Oracle 数据库


连接地址我这样写:Connection URL:jdbc:oracle:thin:@localhost:1521:orcl


一直提示:IO异常:The Network Adapter could not establish the connection

 

然后我把连接地址改成:Connection URL:jdbc:oracle:thin:@127.0.0.1:1521:orcl

 

还是同样连接不上,以前不都是这么写的吗!今天还真邪门!!!


于是我在cmd里面输入:sqlplus  system/密码  能连接上,这证明监听程序没有问题

 

接着输入:select instance_name from v$instance 查询监听程序监听的是不是orcl数据库,结果确实是orcl

 

这还真怪了,郁闷了! 迷茫了......................

 

经过半个小时的折腾还是没搞定,后来经一个好心的网友帮助,看看监听程序监听的是那个本机的ip地址

 

于是我打开了Oracle  net  Manager---->本地---->监听程序---->listener  

 

一看 网络地址  主机:192.168.16.2  端口:1521

 

于是把URL 写成 Connection URL:jdbc:oracle:thin:@192.168.16.2:1521:orcl

 

点击 Test Driver  不多就弹出了:Database connection successfully estalished.

 

搞定了 嘿嘿 

 

 

 

 

 

 

 

 

 

 

分享到:
评论

相关推荐

    解决 The Network Adapter could not establish the connection

    自己用的解决 "The Network Adapter could not establish the connection" 的连接oracle问题。网上查的一些片段资料。主要是用自己去公司用的。

    oracle11g sqlDeveloper无法创建连接

    解决了oracle11g数据库安装后,使用自带的sqlDeveloper工具连接数据库,总是报The Network Adapter could not establish the connection这个问题

    Myeclipse链接Oracle等数据库时lo exception: The Network Adapter could not establish the connection

    今天小编就为大家分享一篇关于Myeclipse链接Oracle等数据库时lo exception: The Network Adapter could not establish the connection,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起...

    Missing artifact com.oracle:ojdbc6:jar:11.2.0.1.0问题解决 ojdbc包pom.xml出错

    Missing artifact com.oracle:ojdbc6:jar:11.2.0.1.0问题解决 ojdbc包pom.xml出错 <!-- oracle数据库驱动 -->  <groupId>com.oracle</groupId>  <artifactId>ojdbc6  <version>11.2.0.1.0 1.首先确定你...

    JDBC连接Oracle数据库常见问题及解决方法

    4. Weblogic 连接 Oracle 问题:The Network Adapter could not establish the connection 解决方法: * 可能是服务器的监听停掉了,是数据库的问题,与应用无关;应该先检查一下 Oracle 是否正常,用 sql*plus ...

    ojdbc6-11.2.0.1.0 .zip

    Oracle JDBC驱动程序是Java开发者与Oracle数据库进行交互的重要工具,ojdbc6-11.2.0.1.0 .zip文件就是Oracle公司为Java应用程序提供的一个特定版本的JDBC驱动程序包,用于解决"Could not find artifact ...

    java连接oracle数据库jar包ojdbc8

    String url = "jdbc:oracle:thin:@//hostname:port/service_name"; String username = "your_username"; String password = "your_password"; try { Class.forName("oracle.jdbc.driver.OracleDriver"); ...

    could not create the java virtual machine 解决办法

    ### "could not create the java virtual machine" 解决办法 在开发过程中,我们经常会遇到 “could not create the java virtual machine” 这样的错误提示。这个问题通常出现在启动基于Java的应用程序时,比如...

    oracle10g提示oracle not available的一些个人总结

    ### Oracle 10g 提示 Oracle Not Available 的个人总结与解决方案 #### 一、问题概述 在使用 Oracle 10g 数据库时,可能会遇到“ORA-01034: ORACLE not available”和“ORA-27101: shared memory realm does not ...

    Plsql 12连接Oracle时出现Could not initialize oci.dll解决方案 oracle 客户端

    在使用PL/SQL Developer 12连接Oracle数据库时,可能会遇到“Could not initialize oci.dll”这样的错误提示。这个错误通常表明系统无法找到或正确加载Oracle客户端的oci.dll库文件,这是Oracle Instant Client的一...

    ojdbc6-11.2.0.1.0jar,oracle连接

    String url = "jdbc:oracle:thin:@hostname:port/service_name"; Connection conn = DriverManager.getConnection(url, "username", "password"); ``` 其中,`hostname`是Oracle服务器的主机名,`port`是监听的...

    The Cloud DBA-Oracle: Managing Oracle Database in the Cloud

    The Cloud DBA-Oracle: Managing Oracle Database in the Cloud By Abhinivesh Jain, Niraj Mahajan English | PDF| 2017 | 228 Pages | ISBN : 1484226348 Learn how to define strategies for cloud adoption of...

    深入浅出Oracle: DBA入门、进阶与诊断案例.pdf

    《深入浅出Oracle:DBA入门、进阶与诊断案例》是一本专为数据库管理员(DBA)设计的Oracle技术指南。这本书详细介绍了Oracle数据库管理的基础知识,中级技能以及高级故障诊断技巧,旨在帮助读者从新手到专家逐步提升...

    设置MyEclipse10.0连接Oracle11g数据库

    当你尝试`Test Driver`时,可能会遇到“Error while performing database login with the oracle.jdbc.driver.OracleDriver driver: Io exception: The Network Adapter could not establish the connection”的错误...

    Oracle Database 11g:The Complete Reference.rar

    Oracle Database 11g:The Complete Reference.rar Oracle Database 11g:The Complete Reference.rar Oracle Database 11g:The Complete Reference.rar

    oracle ojdbc6-11.2.0.3.jar

    String url = "jdbc:oracle:thin:@hostname:port/service_name"; String username = "your_username"; String password = "your_password"; Connection conn = DriverManager.getConnection(url, username, password...

    ojdbc6 解决maven缺失问题

    因此,当Maven尝试构建项目并找不到ojdbc6时,会抛出“not found”错误。 解决这个问题有几种方法: 1. **本地添加**:你可以将ojdbc6.jar文件手动添加到你的本地Maven仓库。通常,这个仓库位于用户的主目录下的`....

    oci.zip 解决Oracle连接时提示oracle library is not loaded的问题

    在使用Navicat Premium 15这样的数据库管理工具连接Oracle数据库时,有时会遇到“oracle library is not loaded”的错误提示,这通常是由于缺少或不兼容的Oracle客户端库文件导致的。Oracle Call Interface (OCI) 是...

    jdbc连接oracle

    private static String url="jdbc:oracle:thin:@127.0.0.1:1521:databasename"; private static String uname="username"; private static String passwd="password"; static{ try { Class.forName("oracle...

    Oracle报错ORA-12516

    ### Oracle报错ORA-12516:TNS:listener could not find available handler with matching protocol stack #### 报错概述 在Oracle数据库环境中遇到ORA-12516错误时,通常意味着监听器无法找到与请求协议栈匹配的...

Global site tag (gtag.js) - Google Analytics