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.

相关推荐
ClouGence4 天前
Oracle CDC 架构优化:从主库直连到 DataGuard 备库同步
数据库·后端·oracle
曹牧5 天前
Oracle EXPLAIN PLAN
数据库·oracle
贤时间5 天前
codex 助力oracle ebs 开发
数据库·oracle
秉承初心5 天前
PostgreSQL 数据性能瓶颈突破实战
数据库·postgresql·oracle
Curvatureflight5 天前
MySQL 深分页越来越慢?从 LIMIT OFFSET 改成游标分页
数据库·oracle
XZ-0700015 天前
MySQL事务
数据库·mysql·oracle
tiancaijiben5 天前
阿里云函数计算FC如何实现网站的定时任务与自动化
数据库·oracle·dba
xfhuangfu5 天前
Oracle 19c 多租户体系架构介绍
数据库·oracle·架构
杨云龙UP6 天前
Spotlight 接入 Oracle 数据库监控操作指南 2026-06-16
数据库·oracle·性能监控·预警·阈值·spotlight·瓶颈分析
unique6 天前
AI Coding 采集方案探索
jvm·人工智能·oracle