博客
关于我
Fatal NI connect error 12547, connecting to: (LOCAL=NO)
阅读量:389 次
发布时间:2019-03-05

本文共 1574 字,大约阅读时间需要 5 分钟。

查看日志发现以下报错


Fatal NI connect error 12547, connecting to:

(LOCAL=NO)

VERSION INFORMATION:

TNS for Linux: Version 11.2.0.4.0 - Production
Oracle Bequeath NT Protocol Adapter for Linux: Version 11.2.0.4.0 - Production
TCP/IP NT Protocol Adapter for Linux: Version 11.2.0.4.0 - Production
Time: 31-OCT-2019 05:38:37
Tracing not turned on.
Tns error struct:
ns main err code: 12547

TNS-12547: TNS:lost contact

ns secondary err code: 12560
nt main err code: 0
nt secondary err code: 0
nt OS err code: 0
opiodr aborting process unknown ospid (27395) as a result of ORA-609
Thu Oct 31 05:40:00 2019
Thread 1 advanced to log sequence 88896 (LGWR switch)
Current log# 3 seq# 88896 mem# 0: /xfdata/xf/redo03.log
Current log# 3 seq# 88896 mem# 1: /opt/app/oracle/oradata/redo03.log
Thu Oct 31 05:40:00 2019
Archived Log entry 123670 added for thread 1 sequence 88895 ID 0xa0fe4d67 dest 1:
Thu Oct 31 05:43:26 2019


错误原因

metalink上说这个错误是客户端经历了一个超时,新的 Automatic Diagnostic Repository (ADR) 机制将超时信息写入了日志文件。

These time out related messages are mostly informational in nature. The messages indicate the specified client connection (identified by the ‘Client address:’ details) has experienced a time out. The ‘nt secondary err code’ identifies the underlying network transport, such as (TCP/IP) timeout limits after a client has abnormally terminated the database connection.

解决办法

  1. 在sqlnet.ora 文件中添加一下内容
DIAG_ADR_ENABLED = OFF
  1. 在服务器listener.ora文件中添加一下内容
DIAG_ADR_ENABLED_
= OFF

例如:listenername=LISTENER写入以下内容

DIAG_ADR_ENABLED_LISTENER = OFF
  1. 重新加载或者重启监听
lsnrctl restart or lsnrctl reload

转载地址:http://ojnzz.baihongyu.com/

你可能感兴趣的文章
mysql修改密码
查看>>
virtualbox中 Kali Linux安装增强功能
查看>>
virtualbox中 Ubuntu挂载共享文件夹
查看>>
Python 内置函数笔记
查看>>
BootStrapTable 错误
查看>>
PHP 配置文件
查看>>
PHP 脚本不报错
查看>>
代码整洁之道小结
查看>>
悲观锁与乐观锁
查看>>
js new Date 创建时间默认是8点
查看>>
Python实现cmd命令连续执行
查看>>
罗马数字
查看>>
IO多路复用小故事
查看>>
纠错码简介
查看>>
码云 Pages 搭建
查看>>
《论可计算数及其在判定上的应用》简单理解
查看>>
中国剩余定理证明过程
查看>>
kafka告警简单方案
查看>>
java接口的应用举例
查看>>
java接口中多继承的问题
查看>>