`
chengyue2007
  • 浏览: 1488684 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

协议适配器错误的解决方法

 
阅读更多

Case:

Microsoft Windows [版本 5.2.3790]
(C) 版权所有 1985-2003 Microsoft Corp.

C:\Documents and Settings\user1>lsnrctl

LSNRCTL for 32-bit Windows: Version 9.2.0.7.0 - Production on 27-8月 -2008 09:33
:43

Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.

欢迎来到LSNRCTL,请键入"help"以获得信息。

LSNRCTL> status
正在连接到 (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
TNS-12541: TNS:无监听器
TNS-12560: TNS: 协议适配器错误
TNS-00511: 无监听器
   32-bit Windows Error: 2: No such file or directory
正在连接到 (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.0.55)(PORT=1521)))

TNS-12538: TNS:没有此协议适配器
TNS-12560: TNS: 协议适配器错误
TNS-00508: 无此类协议适配器

LSNRCTL> start
启动tnslsnr:请稍候...

TNSLSNR for 32-bit Windows: Version 9.2.0.7.0 - Production
系统参数文件为D:\oracle\ora92\network\admin\listener.ora
写入D:\oracle\ora92\network\log\listener.log的日志信息
监听:(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
监听该对象时出错: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.0.55)(PORT=
1521)))
TNS-12538: TNS:没有此协议适配器
TNS-12560: TNS: 协议适配器错误
TNS-00508: 无此类协议适配器


监听程序未能启动。请参阅上面的错误消息...


---------------------------
服务
---------------------------
在 本地计算机 无法启动 OracleOraHome92TNSListener 服务。

错误 1067: 进程意外终止。

---------------------------
确定  
---------------------------

==============================================================

ORA-12560: TNS: 协议适配器错误的解决方法

造成ORA-12560: TNS: 协议适配器错误的问题的原因有个:

1.监听服务没有起起来。windows平台个一如下操作:开始---程序---管理工具---服务,打开服务面板,启动oraclehome92TNSlistener服务。

2.database instance没有起起来。windows平台如下操作:开始---程序---管理工具---服务,打开服务面板,启动oracleserviceXXXX,XXXX就是你的database SID.

3.注册表问题。regedit,然后进入HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0将该环境变量ORACLE_SID设置为XXXX,XXXX就是你的database SID.或者右几我的电脑,属性--高级--环境变量---系统变量--新建,变量名=oracle_sid,变量值=XXXX,XXXX就是你的database SID.或者进入sqlplus前,在command line下输set oracle_sid=XXXX,XXXX就是你的database SID.

经过以上步骤,就可以解决问题。

=======================================
TNS: 协议适配器错误的问题的原因有三个:
1.监听服务没有起起来。windows平台个一如下操作:开始---程序---管理工具---服务,打开服务面板
,启动oraclehome92TNSlistener服务。
2.database instance没有起起来。windows平台如下操作:开始---程序---管理工具
---服务,打开服务面板,启动oracleserviceXXXX,XXXX就是你的database SID.
3.注册表问题。regedit,然后进入HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0将该
环境变量ORACLE_SID设置为XXXX,XXXX就是你的database SID.或者右几我的电脑,属性--高级--环境变量---系统变量--新建,变量名=oracle_sid,变量值=XXXX,XXXX就是你的database SID.或者进入sqlplus前,在command line下输set oracle_sid=XXXX,XXXX就是你的database SID.
经过以上步骤,就可以解决问题

1、ORA-12541:TNS:没有监听器
原因:没有启动监听器或者监听器损坏。如果是前者,使用命令net start
OracleOraHome81TNSListener(名字可能有出入)即可;如果是后者,则使用“Net8 Configuration

Assistant”工具向导之“监听程序配置”增加一个监听器即可(基本不用写任何信息,一路OK。在添加之前可能需要把所有的监听器先删除!)
2、ORA-12500:TNS:监听程序无法启动专用服务器进程或ORA-12560:TNS:协议适
配器错误
原因:ORACLE的数据库服务没有启动。使用命令net start ORACLESERVICEORADB
(ORADB为数据库名字)即可。如果仍没有解决,请继续向下看。

3、如果数据库服务启动失败,则很有可能是其注册表项值损坏,最好的做法是以下两步:
1)ORADIM -DELETE -SID oradb 删除数据库服务项
2)ORADIM -NEW -SID oradb 新增数据库服务项
注:这个过程中如果出错,就重启计算机!
4、ORA-12154:TNS:能解析服务名
原因:ORACLE的网络服务名没有正确配置。请使用“Net8 Configuration
Assistant”工具向导之“本地网络服务名配置”配置TNS即可。如果仍没有解决,请继续向下看。
5、ORA-1034 :TNS:ORACLE不可用
原因:ORACLE的数据库服务正确启动,但是数据库没有打开!
使用命令:
1)svrmgrl 启动服务管理器
2)connect internal 以internal身份登陆
3)startup 打开数据库
6、ORA-12560:TNS:协议适配器错误(顽固性的)
原因:未知。
解决:必杀技--打开“Windows任务管理器”,杀死ORACLE.exe及ORADIM.exe进
程,书写自己的

ora_startup.bat,执行之!
PS:
1、我的ora_startup.bat:
net start OracleOraHome81TNSListener
net start ORACLESERVICEORADB
svrmgrl 一般情况下不用,不过有时少不了它的,具体步骤见第5步。
2、我的ora_shutdown.bat:
net stop OracleOraHome81TNSListener
net stop ORACLESERVICEORADB

  ORACLE_HOME=/u01/app/oracle/product/8.1.6
export ORACLE_HOME/ 包括Oracle软件的目录 /
LD_LIBRARY_PATH=/u01/app/oracle/product/8.1.6/lib;
export LD_LIBRARY_PATH
ORACLE_BASE=/u01/app/oracle
export ORACLE_BASE/ 包括Oracle软件的目录和管理软件的目录 /
ORACLE_SID=ORCL
export ORACLE_SID/ 缺省数据库的标识 /
ORACLE_TERM=vt100
export ORACLE_TERM
ORA_NLS33=/u01/app/oracle/product/8.1.6/
ocommon/nls/admin/data
export ORA_NLS33 / 语言支持 /
PATH=$PATH: /u01/app/oracle/product/8.1.6/bin
export PATH

 


=============================================
ORA-12560 STARTING LISTENER ON NT - TROUBLESHOOTING
---------------------------------------------------

ORA-12560: TNS Protocol adapter error
Cause: A generic protocol adapter error occurred.
Action: Check addresses used for proper protocol specification. Before reporting this error, look at the error stack and check for lower level transport errors.For further details, turn on tracing and reexecute the operation. Turn off tracing when the operation is complete.

This is a high level error just reporting an error occurred in the actual transport layer. Look at the next error down the stack and process that.


1.- Starting Listener with TCP/IP Protocol
   
    Problem:
    You start the TNS Listener from command line and the TCP/IP address fails with a TNS-12560.

    Solution:
    Check if Microsoft Winsock Proxy(WSP) Client is enabled on the Windows NT Server, if that is the case then go to windows Control
Panel, click WSP icon and select the disable Proxy Client option.

    Explanation:
    The Winsock application may fail to bind to a specific port on a Proxy Server computer when the Winsock is running Proxy Client.

2.- TNS-12560 TNS-512 Starting the listener.

    Problem:
    You try to start up the listener and receive the following error stack:
    TNS-12542: TNS:address already in use
     TNS-12560: TNS Protocol adapter error
      TNS-00512: Address already in use
       32-bit Windows Error: 48: Unknown error

    Error: TNS 512
    Text:   Address already in use
    --------------------------------------------
    Cause: Specified listener address is already being used.
    Action: Start your listener with an unused address.

    Generally this problem may ocurr for a incorrect setting in the listener.ora. Some causes of this problems may be:
   
    a.- Some defined address in the listeners.ora is been used. Make sure other listeners are not running. Either listener.log and screen
output appear the address with problem.
       
    b.- Just for 8i: in windows NT the algorithm to acquire
        the address has change, please check the Note 69026.1: Oracle 8i and socket LISTEN operations.

   Explanation:
   The listener will try to acquire the address in exclusive mode, if this
is been used then the process to get it will fail.
   
3.- Starting the listener the errors ORA-12203,ORA-12560, NL-462 or NL-427 may be raised.

    Problem:
    You try to start up the listener and receive the following errors
    ORA-12203,ORA-12560, NL-462 or NL-427.

    Solution:
    Recreate the listener.ora file.

    Explanation:
    Some corruption in the listener.ora may get unable to the tnslsnr to work adequatly.


4.- Failed to start service, TNS-12560, TNS-00530 when create new listener services

    Problem:
    To recreate Oracle TNS listener service on Windows NT, you delete the service entry in registry. When using lsnrctl to start the listener, you get the following errors:

    LSNRCTL> start
    Starting tnslsnr: please wait...

    Failed to start service, error 3.

    TNS-00530: Protocol adapter error

    The Listener service is not recreated and the Listener would not start.
    You are using a valid listener.ora file and protocol adapters.


    Solution:
    After you delete the Listener service from registry, you have to reboot
NT for it to take effect. Then you can use lsnrctl to start the Listener, which would re-create the listener service.


    Explanation:
    The Listener service is marked 'disabled', but it still exists after
you delete the service from registry.

分享到:
评论

相关推荐

    协议适配器错误解决方法

    协议适配器错误解决方法 协议适配器错误是指在数据库管理系统中,协议适配器无法正常工作,导致数据库无法启动或连接失败。这种错误可能是由于多种原因引起的,如监听服务没有启动、数据库实例没有启动、注册表问题...

    oracle 协议适配器错误解决方法

    oracle 协议适配器错误解决方法,和大家一起分享,一起学习,希望可以帮到忙

    oracle各种常见故障解决方法,错误编码大全,还有数据库协议适配器错误解决方法、

    oracle各种常见故障解决方法,错误编码大全,还有数据库协议适配器错误解决方法、

    Oracle协议适配器错误问题解决

    Oracle协议适配器错误问题解决ERROR:ORA-12560:TNS:协议适配器错误

    ORA-12560 TNS 协议适配器错误

    ### ORA-12560 TNS 协议适配器错误详解 #### 一、概述 在Oracle数据库管理过程中,经常会遇到各种各样的错误提示,其中“ORA-12560 TNS: 协议适配器错误”是较为常见的一种。这种错误通常发生在客户端尝试连接到...

    ORA-12560TNS协议适配器错误

    实验得来的,不是随便copy的, ORA-12560TNS协议适配器错误,这个问题可定可以解决

    oracle解决协议适配器错误

    本篇文章将基于提供的文件信息来深入探讨如何解决Oracle登录过程中出现的协议适配器错误,并借此机会帮助读者更深入地理解Oracle的相关配置与管理。 ### 一、理解协议适配器错误 协议适配器错误通常是指在尝试连接...

    解决ORA-12560 TNS 协议适配器错误

    解决ORA-12560 TNS 协议适配器错误

    初学Oracle最经常碰到的错误及解决方案

    2. **ORA-12500:TNS:监听程序无法启动专用服务器进程** 或 **ORA-12560:TNS:协议适配器错误** 这两个错误通常表示Oracle数据库服务未启动。你可以通过命令`net start ORACLESERVICEORADB`(其中ORADB是你的...

    Oracle数据库常见错误处理方法

    当尝试连接到Oracle数据库时,用户可能会收到ORA-12560: TNS:协议适配器错误的消息。这通常表示客户端与服务器之间的通信出现了问题。 **解决方案:** 1. **监听服务未启动** - 在Windows平台上,可以通过以下...

    ABB NMBP-01 Modbus Plus 适配器手册.pdf

    在维护和故障诊断部分,手册可能会提供诊断工具的使用方法,以帮助技术人员快速定位和解决问题,从而减少设备停机时间。这可能涉及到软件工具的使用,比如ABB提供的诊断软件,或是一些通用的故障诊断流程和步骤。 ...

    宽带连接错误处理方法

    ### 宽带连接错误处理方法 #### 一、常见错误代码及解决办法 ...通过上述详细的错误代码解释与处理方法,用户可以更加高效地定位问题所在,并采取相应措施来解决宽带连接过程中遇到的各种错误情况。

    Oracle新手最经常碰到的6个错误及解决方案

    2. ORA-12500:TNS:监听程序无法启动专用服务器进程 或 ORA-12560:TNS:协议适配器错误 这通常是因为数据库服务没有启动。使用命令`net start ORACLESERVICEORADB`启动服务,如果仍然存在问题,检查相关服务是否...

    解决navicat 链接oracle时出现的各种问题

    2.ORA-12560TNS:协议适配器错误 1.监听服务没有起起来。windows平台个一如下操作:开始—程序—管理工具—服务,打开服务面板,  启动OracleOraDb11g_home1TNSlistener服务。 2.database instance

    宽带拨号时出现691、678等各类错误代码,解决方法!

    **解决方法:** 1. **卸载并重新安装PPPoE软件**:确保彻底卸载后,再按照官方指南正确安装。 2. **检查端口占用情况**:利用任务管理器或其他工具确认是否有其他程序占用相关端口。 --- #### 错误605:“Cannot ...

    行业分类-设备装置-用于执行从第一适配器到第二适配器的失效转移操作的方法和系统.zip

    压缩包内的“用于执行从第一适配器到第二适配器的失效转移操作的方法和系统.pdf”文件很可能是详细的技术文档,涵盖了上述所有知识点的详细解释,包括具体的实现细节、案例分析和可能遇到的问题及解决方案。...

    宽带连接错误619的解决方法.docx

    **宽带连接错误619详解及解决方法** 错误619是用户在尝试建立宽带连接时可能会遇到的一个常见问题,通常表现为用户能够成功连接到ISP(互联网服务提供商),但无法打开网页或者其他网络服务,重新连接时会出现错误...

    台达PLC出现通信错误或通信超时或下载时提示机种不符的解决办法总结.rar

    - 解决方法:首先,检查网络环境,确保无干扰并优化网络设置。其次,确认PLC是否处于在线状态。如果是协议问题,确保编程软件和PLC的通信协议一致,如Modbus TCP或UDP。 3. 下载时提示机种不符: - 原因:通常是...

    DPDP适配器在PROFIBUS总线网络中的应用

    为此,引入DPDP适配器作为解决方案,成为了连接这两个独立PROFIBUS-DP网络的桥梁,实现了数据的高效传输与实时监控。 #### DPDP适配器基本介绍 DPDP适配器是一种专为PROFIBUS-DP网络设计的通信设备,它的主要功能...

    胜为蓝牙适配器安装说明书.pdf

    在文档的某些部分提到了“OBEXFileTransfer”和“GPS SPPSlave”,这指的是与蓝牙适配器有关的两项技术:对象交换(Object Exchange)协议和串行端口配置文件(Serial Port Profile)的GPS服务,这些服务通常用于文件...

Global site tag (gtag.js) - Google Analytics