ORA-12792: Network transfer operation aborted due to TTC error 12543.

RMAN Active duplicate hung with ORA-12792: Network transfer operation aborted due to TTC error 12543

KB160250

Summary

Creation of standby using RMAN active duplicate hung with below errors seen on primary alert log :

2024-03-23T04:45:47.593662-04:00

Errors in file /u01/app/oracle/diag/rdbms/test_shk_iad/test/trace/test_ora_65670.trc:

ORA-12792: Network transfer operation aborted due to TTC error 12543.

2024-03-23T04:48:35.527422-04:00

Solution

Please follow below action plan to modify the iptables on both primary & standby and retry the active duplicate :

1.) Save iptables

sudo su -

iptables-save > /home/oracle/iptables.orig

2.) List iptables

iptables -L --line-numbers

3.) Delete following lines from below chains :

Chain INPUT (policy ACCEPT)

12 REJECT all -- anywhere anywhere reject-with icmp-host-prohibited

Chain FORWARD (policy ACCEPT)

1 REJECT all -- anywhere anywhere reject-with icmp-host-prohibited

4.) Below commands will be used for deletion :

iptables -D INPUT <number from first col from above output belonging to the reject-with icmp-host-prohibited >

iptables -D FORWARD <number from first col from above output belonging to the reject-with icmp-host-prohibited >

Example :

iptables -D INPUT 12

iptables -D FORWARD 1

4.) Verify if rules have been deleted :

iptables -L --line-numbers

5.) Retry the creation of standby.

6.) Below step to restore should be done only after standby is created.

Restore the default rules:

iptables-restore /tmp/iptables.orig

Reload and check if the previous rules are as a default

systemctl reload iptables.service

systemctl status iptables.service

Attachments :

Cause

This is known issue in DB System and this was being investigated in below mentioned bug by Development :

Bug 35470978 - ORCHESTRATIONS WHERE RMAN IS INVOLVED ARE FAILING WITH ORA-12792: NETWORK TRANSFER OPERATION ABORTED DUE TO TTC E

But bug got closed since issue was resolved with the workaround as mentioned below after which customer didn't comeback.

相关推荐
架构师老Y16 分钟前
013、数据库性能优化:索引、查询与连接池
数据库·python·oracle·性能优化·架构
Leon-Ning Liu1 小时前
Oracle 26ai新特性:时区、表空间、审计方面的新特性
数据库·oracle
Yushan Bai2 小时前
ORACLE数据库在进行DROP TABLE时失败报错ORA-00604问题的分析处理
数据库·oracle
XDHCOM6 小时前
ORA-31215: DBMS_LDAP PL/SQL无效LDAP修改值,Oracle报错故障修复与远程处理方案,快速解决连接配置难题
数据库·sql·oracle
betazhou8 小时前
记一次Oracle REDO在线日志损坏故障修复
数据库·oracle·redo·ora-00600
老苏畅谈运维9 小时前
DBA分析 ORA 报错的利器,errorstack让 Oracle 错误现原形
数据库·oracle·dba
大江东去浪淘尽千古风流人物9 小时前
【Basalt】nfr_mapper 中的“小 SfM/BA 后端”
c++·人工智能·计算机视觉·oracle·augmented reality
曹牧20 小时前
Oracle数据库中,将JSON字符串转换为多行数据
数据库·oracle·json
jnrjian21 小时前
text index 查看index column index定义 index 刷新频率 index视图
数据库·oracle
韶博雅21 小时前
emcc升级
oracle