【DataGuard】ORA-16014 and ORA-00312 Messages in Alert.log of Physical Standby

简介:
安装完成dg后,发现alert 之中的有如下错误
ORA-16014: log 4 sequence# 44 not archived, no available destinations
ORA-00312: online log 4 thread 1: '/opt/oracle/oradata/orclpdg/redo04.log'
Wed Aug 24 22:55:45 2011
Errors in file /opt/oracle/admin/orcl/bdump/orclpdg_arc0_4062.trc:
ORA-16014: log 4 sequence# 44 not archived, no available destinations
ORA-00312: online log 4 thread 1: '/opt/oracle/oradata/orclpdg/redo04.log'
Wed Aug 24 22:55:45 2011
Redo Shipping Client Connected as PUBLIC
-- Connected User is Valid
RFS[2]: Assigned to RFS process 4762
RFS[2]: Identified database type as 'physical standby'
Primary database is in MAXIMUM PERFORMANCE mode
Re-archiving standby log 4 thread 1 sequence 44
Wed Aug 24 22:55:45 2011
ARC1: Archiving not possible: No primary destinations
ARC1: Failed to archive thread 1 sequence 44 (4)

查看备库的参数文件归档路径设置:备库本应该是orclpdg 这里是orcl(从主库拷贝过来,没有改成相应的值)
LOG_ARCHIVE_DEST_1='LOCATION=/opt/oracle/std_arch VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=orcl'
解决方法:
LOG_ARCHIVE_DEST_1='LOCATION=/opt/oracle/std_arch VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=orclpdg'
之后此错误解决!
对于LOG_ARCHIVE_DEST_N 参数的配置有语法错误比如少了空格,或者VALID_FOR参数配置错误都有可能导致上述错误!大多是此类错误,仔细检查就可避免!
附上metalink上的文档:
ORA-16014 and ORA-00312 Messages in Alert.log of Physical Standby. [ID 834771.1]
This document is being delivered to you via Oracle Support's Rapid Visibility (RaV) process and therefore has not been subject to an independent technical review.
Applies to:
Oracle Server - Enterprise Edition - Version: 10.2.0.1 to 11.2.0.2 - Release: 10.2 to 11.2
Information in this document applies to any platform.
Checked for relevance on 18-Apr-2011
现象:
备库的alert.log出现 ORA-16014 and ORA-00312 信息 
========== 
ORA-16014: log 8 sequence# 2386 not archived, no available destinations 
ORA-00312: online log 8 thread 2: '+DATADG/phpprd/onlinelog/group_8.271.636653821' 
ORA-00312: online log 8 thread 2: '+FLASHDG/phpprd/onlinelog/group_8.317.636653821' 
OR 
ORA-16014: log 6 sequence# 2393 not archived, no available destinations 
ORA-00312: online log 6 thread 2: '+FLASHDG/phpprd/onlinelog/group_6.645.684556605'
原因:
问题发生时是否有如下配置:
++ There is no log_archive_dest_n parameter defined for standby redo log files archival
++ valid_for in log_archive_dest_1 is (ONLINE_LOGFILE,ALL_ROLES) 
log_archive_dest_1 = location="+FLASHDG/phpprd/", valid_for=(ONLINE_LOGFILE,ALL_ROLES) 
解决方法:
 ++ Make sure we define log_archive_dest_n with correct valid_for attribute that enables standby redo logs archival. 
ALTER SYSTEM SET log_archive_dest_2 = 'location=+FLASHDG/phpprd/ valid_for=(standby_logfile, standby_role) db_unique_name= boston';
Note:- boston is the standby db_unique_name here
OR 
++ Remove valid_for from the log_Archive_dest_1, this assumes default valid_for attribute i.e., all_logfile, all_roles: 
SQL>ALTER SYSTEM SET log_archive_dest_1 = 'location="+FLASHDG/phpprd/"'; 
相关实践学习
日志服务之使用Nginx模式采集日志
本文介绍如何通过日志服务控制台创建Nginx模式的Logtail配置快速采集Nginx日志并进行多维度分析。
相关文章
|
13天前
|
运维 安全 Ubuntu
`/var/log/syslog` 和 `/var/log/messages` 日志详解
`/var/log/syslog` 和 `/var/log/messages` 是Linux系统的日志文件,分别在Debian和Red Hat系发行版中记录系统事件和错误。它们包含时间戳、日志级别、PID及消息内容,由`rsyslog`等守护进程管理。常用命令如`tail`和`grep`用于查看和搜索日志。日志级别从低到高包括`debug`到`emerg`,表示不同严重程度的信息。注意保护日志文件的安全,防止未授权访问,并定期使用`logrotate`进行文件轮转以管理磁盘空间。
19 1
|
7月前
|
Linux
Linux的/var/log/messages是空的,如何解决?
Linux的/var/log/messages是空的,如何解决?
273 0
|
SQL 数据库 关系型数据库

热门文章

最新文章