TNS-12535: TNS:operation timed out (WARNING: inbound connection timed out (ORA-3136))

简介:

问题原因:

Fatal NI connect error 12170.
  VERSION INFORMATION:
     TNS for Linux: Version 11.2.0.3.0 - Production
     Oracle Bequeath NT Protocol Adapter for Linux: Version 11.2.0.3.0 - Production
     TCP/IP NT Protocol Adapter for Linux: Version 11.2.0.3.0 - Production
  Time: 24-MAY-2017 18:40:22
  Tracing not turned on.
  Tns error struct:
    ns main err code: 12535
TNS-12535: TNS:operation timed out
    ns secondary err code: 12606
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
  Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.2)(PORT=44430))
WARNING: inbound connection timed out (ORA-3136)
Wed May 24 18:45:22 2017


解决方法:

[oracle@ogg3 ~]$ cd /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/             
[oracle@ogg3 admin]$ vim listener.ora 
INBOUND_CONNECT_TIMEOUT_LISTENERNAME = 0

[oracle@ogg3 admin]$ vim sqlnet.ora

DIAG_ADR_ENABLED=OFF
SQLNET.INBOUND_CONNECT_TIMEOUT = 0

[oracle@ogg3 admin]$ lsnrctl
LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 28-JUN-2017 18:03:55
Copyright (c) 1991, 2011, Oracle.  All rights reserved.
Welcome to LSNRCTL, type "help" for information.
LSNRCTL> reload

LSNRCTL>exit

[oracle@ogg3 admin]$









本文转自 z597011036 51CTO博客,原文链接:http://blog.51cto.com/tongcheng/1929113,如需转载请自行联系原作者
目录
相关文章
|
SQL Oracle 关系型数据库
Oracle中Error while performing database login with the XXXdriver; Listener refused the connection wit...
Oracle中Error while performing database login with the XXXdriver; Listener refused the connection wit...
219 0
|
SQL Oracle 关系型数据库
TNS-12535: TNS:operation timed out案例解析
一数据库突然连接不上,在自己电脑上使用SQL Developer也连接不上。立即使用SecureCRT连接上了这台服务器,从下面几个方面检查。   1:检查了数据库的状态是否正常 $ sqlplus / as sysdba   SQL*Plus: Release 10.
3382 0
|
SQL Oracle 关系型数据库
ORA-12514, TNS:listener does not currently know of service requested in connect descriptor案例2
今天使用SQL Developer连接一台测试服务器数据库(ORACLE 11g)时,遇到了“ORA-12514, TNS:listener does not currently know of service requested in connect descriptor”错误,具体提示如下所示:...
5296 0
|
关系型数据库 数据库
ORA-12154: TNS:could not resolve the connect identifier specified
在安装ORACLE安装的时候,报如下错误:ORA-12154: TNS:could not resolve the connect identifier specified。如下图所示: 折腾了很久才找到罪魁祸首:原来在安装数据库时,设置用户密码的时候里面包含了@符号,引起了这个错误,这个错误倒是有点诡异,应该是ORACLE连接DB时就把口令@后面的串当连接字用了。
2922 0
|
数据库
ORA-12520: TNS:listener could not find available handler for requested type of server
当你碰到ORA-12520错误时,如下所示: 英文错误提示: ORA-12520: TNS:listener could not find available handler for requested type of server 中文错误提示: ORA-12520: TNS: 监听程序无法为请求的服务器类型找到可用的处理程序 一般你应该从下面两个方面去检查出错原因并解决问题:   1:数据库是专用服务器,但是在tnsname.ora配置文件中设置的连接方式是shared,这种情况需要修改tnsname.ora配置文件,这种错误情况一般发生在第一次连接数据库服务器。
1324 0
|
Oracle 关系型数据库 数据库
Oracle中Error while performing database login with the XXXdriver; Listener refused the connection with the following error; ORA-12505,TNS:listener does
一次连接数据库怎么也连接不上,查了多方面资料,终于找到答案,总结 首先应该保证数据库的服务启动 在myeclipse的数据库视图中点 右键->new 弹出database driver的窗口, Driver template选择oracle(thin driver), Driver name 输入...
1101 0