multiple channels in RMAN [message #553453] |
Fri, 04 May 2012 11:23 |
dba_7722
Messages: 197 Registered: August 2010 Location: Delhi
|
Senior Member |
|
|
Hello Expert,
I am working to configure on both the nodes of RAC server, but getting error invalid username and password even the password is right.. And the remote_login_passwordfile is set to exclusive.
RMAN> run {
2> ALLOCATE CHANNEL ch1 DEVICE TYPE DISK CONNECT 'sys/sys@node1';
3> ALLOCATE CHANNEL ch2 DEVICE TYPE DISK CONNECT 'sys/sys@node2';
4> backup datafile 1;
5> }
using target database control file instead of recovery catalog
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-12001: could not open channel ch1
RMAN-10008: could not create channel context
RMAN-10003: unable to connect to target database
ORA-01017: invalid username/password; logon denied
and when trying to connect with sqlplus i'm getting below error
CCLCLMP1 /oravl01/oracle/11.1.0.7/network/admin > sqlplus sys/sys@node2 as sysdba
SQL*Plus: Release 11.1.0.7.0 - Production on Fri May 4 12:11:59 2012
Copyright (c) 1982, 2008, Oracle. All rights reserved.
ERROR:
ORA-24313: user already authenticated
please suggest.
|
|
|
|
|
Re: multiple channels in RMAN [message #553795 is a reply to message #553638] |
Tue, 08 May 2012 09:36 |
|
LKBrwn_DBA
Messages: 487 Registered: July 2003 Location: WPB, FL
|
Senior Member |
|
|
You only need to connect to one of the nodes to do a database/file backup.
But if you want to spread the work across different instances:
ALLOCATE CHANNEL ch1 DEVICE TYPE DISK CONNECT '@node1';
ALLOCATE CHANNEL ch2 DEVICE TYPE DISK CONNECT '@node2';
[Updated on: Tue, 08 May 2012 10:59] by Moderator Report message to a moderator
|
|
|
|
|