Unsolved

This post is more than 5 years old

5 Posts

3002

June 19th, 2008 10:00

Rman fails from DB serve while connecting to Avamar server with below error

released channel: c1
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of backup command on c1 channel at 06/19/2008 13:42:13
ORA-19506: failed to create sequential file, name="rnjjar1k_1_1", parms=""
ORA-27028: skgfqcre: sbtbackup returned error
ORA-19511: Error received from media manager layer, error text:
sbtbackup: avtar exited, trying to create rnjjar1k_1_1

RMAN>

Recovery Manager complete.

5 Posts

June 19th, 2008 10:00

The backup script is as below

This is a new configuration
rman catalog usat_rman/ @DBNAME << EOF > /home/orardb/log/mn.log
run {
allocate channel c1 type 'sbt_tape'
PARMS="SBT_LIBRARY=/usr/local/avamar/lib/libobk_avamar.so,ENV=(PATH=/bin:/usr/bin)" trace=2;
send '"--flagfile= /u01/app/usatrman/oracle/Usardb22_avtar-flags.txt"';
backup tablespace "USERS";
release channel c1;
}
EOF

5 Posts

June 19th, 2008 10:00

The flagfile= /u01/app/usatrman/oracle/Usardb22_avtar-flags.txt contents:
--debug
--pidname=Oracle
--pidnum=5002
--logfile=/u01/app/usatrman/oracle/avtar.log
--vardir=/usr/local/avamar/var
--id=admin
--ap= --path=/clients/
~

4 Operator

 • 

14.3K Posts

June 20th, 2008 03:00

I never used script like nor I believe you need to use it with ST_LIBRARY specified...

Try following rman cmdfile

5 Posts

June 25th, 2008 07:00

Thank you but that did not help.

Below was recommended by software vendor(installation guide)

allocate channel c1 type 'sbt_tape'
PARMS="SBT_LIBRARY=/usr/local/avamar/lib/libobk_avamar.so,ENV=(PATH=/bin:/usr/b
in)" trace=2;
send '"--flagfile= /u01/app/usatrman/oracle/Usardb22_avtar-flags.txt"';

4 Operator

 • 

14.3K Posts

June 27th, 2008 04:00

What do you get when I execute what I wrote? Do you get the same error something different?

Btw, I assume you are doing this test from client side (rman cmdfile

5 Posts

June 27th, 2008 06:00

I had another error


RMAN> 2> 3> 4> 5> 6>
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of allocate command on t1 channel at 06/27/2008 09:35:35
ORA-19554: error allocating device, device type: SBT_TAPE, device name:
ORA-27211: Failed to load Media Management Library
Additional information: 2

RMAN>

Recovery Manager complete.


I'm running from oracle client to avamar ser

4 Operator

 • 

14.3K Posts

June 27th, 2008 08:00

Are you using NW module or avamar oracle module?

Top