千家信息网

oracle dg 报错: ORA-16057: DGID from server not in Data Guard configuration

发表于:2024-11-18 作者:千家信息网编辑
千家信息网最后更新 2024年11月18日,搭建完DG,发现备库没有接受到主库的日志。在主库执行Select dest_id,status,error from v$archive_dest where dest_id=3;报: ORA-160
千家信息网最后更新 2024年11月18日oracle dg 报错: ORA-16057: DGID from server not in Data Guard configuration

搭建完DG,发现备库没有接受到主库的日志。

在主库执行

Select dest_id,status,error from v$archive_dest where dest_id=3;

报: ORA-16057: DGID from server not in Data Guard configuration

错误的意思很明显,log_archive_config 没有配置

但是我在已经主库配置了

alter system set log_archive_config = 'dg_config=(itrusdb,jingxiang)'   scope=both ;


通过

ALTER SYSTEM SET log_archive_dest_state_3='DEFER'SCOPE=BOTH;

ALTER SYSTEM SET log_archive_dest_state_3='ENABLE'SCOPE=BOTH;

来生新激活 archive_dest;

后发现错误依旧。


原来。。原来。。。在备库忘记配置log_archive_config这个参数了

通过

alter system set log_archive_config = 'dg_config=(itrusdb,jingxiang)'   scope=both ;

在备库配置完后,dg正常工作。

希望大家以后做事,想的周全一点,不要图快。避免这些不必要的错误。



0