在standby数据库进行数据库备份,如下:
[email protected]:~> rman target /
Recovery Manager: Release 11.2.0.4.0 - Production on Thu Jun 4 06:45:04 2015
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: ORACLE (DBID=1753883584, not open)
RMAN> backup database format ‘/home/oracle/fulldb_%U.bak‘ plus archivelog format ‘/home/oracle/arch_%U.bak‘ delete all input;
Starting backup at 04-JUN-15
using target database control file instead of recovery catalog
RMAN-06820: WARNING: failed to archive current log at primary database
ORACLE error from target database:
ORA-17629: Cannot connect to the remote database server
ORA-17627: ORA-01017: invalid username/password; logon denied
ORA-17629: Cannot connect to the remote database server
在standby数据库执行数据库备份报如上红色字体错误,官方给予处理方法如下(经测试,主备库应设置相同的密码,否则同样存在问题)
RMAN-06820 ORA-17629 During Backup at Standby Site (文档 ID 1616074.1) |
In this Document
APPLIES TO:Oracle Database - Enterprise Edition - Version 11.2.0.4 and later SYMPTOMSRMAN archivelog backup at the standby site is throws the following errors at the start of the job: Starting backup at 15-JAN-2014 13:44:46 But the rest of the backup actually complete successfully: skipping archived log of thread 1 with sequence 607; already backed up CHANGESDatabase was upgraded to 11.2.0.4 CAUSEPer ‘unpublished‘ Bug 8740124, as of 11.2.0.4, we now include the current standby redo log as part of an RMAN archivelog backup at the standby site. This is achieved by forcing a log switch at the primary site. However, the connection to the primary failed when attempting to do so. This is due to this bug: SOLUTIONWorkaround Do not use operating system authentication to login with RMAN. Use a username and password. That is, do not use just the "/" (operating system authentication) connect to the standby database: $ rman target / Instead put in the username and password for the SYSDBA user: $ rman sys/password REFERENCESBUG:17580082 - ACTIVE STANDBY - RMAN-06820: WARNING: FAILED TO ARCHIVE CURRENT LOG AT PRIMARY NOTE:8740124.8 - Bug 8740124 - Current standby redo log group should be included in the database backup by RMAN |