Home » RDBMS Server » Backup & Recovery » EMC networker for Oracle Rman recovery (oracle 12c,Centos6.5,networker8.1)
EMC networker for Oracle Rman recovery [message #646451] Wed, 30 December 2015 23:53 Go to next message
Raymond_2015
Messages: 4
Registered: December 2015
Junior Member
Hi All,

I want to used the rman to restore my database. but some of he oracle clients we get a this error ;

MAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 12/31/2015 12:18:12
ORA-27191: sbtinfo2 returned error
Additional information: 3503
ORA-19511: Error received from media manager layer, error text:
Exceeded the number of retries. The NetWorker server may be down or
unreachable. (2:10:11)

this is my recovery command:
run {
allocate channel t1 type 'SBT_TAPE';
allocate channel t2 type 'SBT_TAPE';
allocate channel t3 type 'SBT_TAPE';
send 'NSR_ENV=(NSR_SERVER=networker,NSR_CLIENT=rman)';
restore database;
recover database;
release channel t1;
release channel t2;
release channel t3;
}

and my backup command when I backup is not append any error

RUN {
ALLOCATE CHANNEL CH1 TYPE 'SBT_TAPE';
ALLOCATE CHANNEL CH2 TYPE 'SBT_TAPE';
SEND DEVICE TYPE 'SBT_TAPE' 'NSR_ENV=(NSR_SERVER=networker,NSR_CLIENT=rman)';
BACKUP
FULL
FORMAT 'db_%d_%U'
DATABASE
INCLUDE CURRENT CONTROLFILE
PLUS ARCHIVELOG
FORMAT 'arch_%d_%U'
;
DELETE
ARCHIVELOG UNTIL TIME "SYSDATE-3"
BACKED UP 1 TIMES TO DEVICE TYPE sbt;
RELEASE CHANNEL CH1;
RELEASE CHANNEL CH2;
}
Re: EMC networker for Oracle Rman recovery [message #646454 is a reply to message #646451] Thu, 31 December 2015 01:36 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator

Quote:
Exceeded the number of retries. The NetWorker server may be down or unreachable.


The problem is at Networker side not Oracle one.

Re: EMC networker for Oracle Rman recovery [message #646456 is a reply to message #646451] Thu, 31 December 2015 01:39 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator

Quote:
and my backup command when I backup is not append any error


The difference I see is:
send 'NSR_ENV=(NSR_SERVER=networker,NSR_CLIENT=rman)';
SEND DEVICE TYPE 'SBT_TAPE' 'NSR_ENV=(NSR_SERVER=networker,NSR_CLIENT=rman)';

Re: EMC networker for Oracle Rman recovery [message #646458 is a reply to message #646456] Thu, 31 December 2015 02:55 Go to previous messageGo to next message
Raymond_2015
Messages: 4
Registered: December 2015
Junior Member
This is the first part of the recovery information,and I have tried, or the same as the error

using target database control file instead of recovery catalog
allocated channel: t1
channel t1: SID=394 instance=test1 device type=SBT_TAPE
channel t1: NMDA Oracle v8.2.1

allocated channel: t2
channel t2: SID=491 instance=test1 device type=SBT_TAPE
channel t2: NMDA Oracle v8.2.1

allocated channel: t3
channel t3: SID=588 instance=test1 device type=SBT_TAPE
channel t3: NMDA Oracle v8.2.1

sent command to channel: t1
sent command to channel: t2
sent command to channel: t3

Starting restore at 31-DEC-15
Re: EMC networker for Oracle Rman recovery [message #646459 is a reply to message #646458] Thu, 31 December 2015 03:00 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator

Quote:
This is the first part of the recovery information,and I have tried, or the same as the error


There are no errors in what you posted.

Copy and paste what you do and get, ALL what you do and get.
Before, Please read How to use [code] tags and make your code easier to read.

Re: EMC networker for Oracle Rman recovery [message #646460 is a reply to message #646454] Thu, 31 December 2015 03:03 Go to previous messageGo to next message
Raymond_2015
Messages: 4
Registered: December 2015
Junior Member
Thank you for your reply, I think is the reason of networker. But I don't know much about it, then do not know what to do
Re: EMC networker for Oracle Rman recovery [message #646461 is a reply to message #646459] Thu, 31 December 2015 03:14 Go to previous messageGo to next message
Raymond_2015
Messages: 4
Registered: December 2015
Junior Member
This is my rman script

 run {
allocate channel t1 type 'SBT_TAPE';
allocate channel t2 type 'SBT_TAPE';
allocate channel t3 type 'SBT_TAPE';
send DEVICE TYPE 'SBT_TAPE' 'NSR_ENV=(NSR_SERVER=networker,NSR_CLIENT=rman)';
restore database;
recover database;
release channel t1;
release channel t2;
release channel t3;
}


This is i getted
using target database control file instead of recovery catalog
allocated channel: t1
channel t1: SID=394 instance=test1 device type=SBT_TAPE
channel t1: NMDA Oracle v8.2.1

allocated channel: t2
channel t2: SID=491 instance=test1 device type=SBT_TAPE
channel t2: NMDA Oracle v8.2.1

allocated channel: t3
channel t3: SID=588 instance=test1 device type=SBT_TAPE
channel t3: NMDA Oracle v8.2.1

sent command to channel: t1
sent command to channel: t2
sent command to channel: t3

Starting restore at 31-DEC-15    !!!!!!Here will wait 3,4 hours.


and Then appear the following error

MAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 12/31/2015 12:18:12
ORA-27191: sbtinfo2 returned error
Additional information: 3503
ORA-19511: Error received from media manager layer, error text:
   Exceeded the number of retries.  The NetWorker server may be down or
unreachable. (2:10:11)
 
Re: EMC networker for Oracle Rman recovery [message #646462 is a reply to message #646461] Thu, 31 December 2015 03:28 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator

Ask your Networker admin, here we are Oracle guys and so may not be able to answer to a Networker question or lead you to investigate in the proper way.

Re: EMC networker for Oracle Rman recovery [message #646470 is a reply to message #646461] Thu, 31 December 2015 08:57 Go to previous message
EdStevens
Messages: 1376
Registered: September 2013
Senior Member
Raymond_2015 wrote on Thu, 31 December 2015 03:14



and Then appear the following error


ORA-19511: Error received from media manager layer, error text:
   Exceeded the number of retries.  The NetWorker server may be down or
unreachable. (2:10:11)
 


Oracle is only relaying the error that originated in the media manager. Oracle is the victim, not the culprit. You need to be looking into NetWorker.
Previous Topic: The Data Unloader DUL utility
Next Topic: Restore and migration from Windows32bit to Linux64bit
Goto Forum:
  


Current Time: Thu Mar 28 09:32:44 CDT 2024