Unsolved

This post is more than 5 years old

4 Posts

654

June 28th, 2007 02:00

virtual node backup fails with Probe had severe indication(s) at completion

Hi there,

I am having some issues trying to do an Oracle rman backup on a virtual node of a cluster. I receive the above message, however when I get rman to "push" the backup to NetWorker it succeeds.
I have all the entries in the remote access for the physical nodes for root and for rman to access the virtual node.
All communication checks are fine and an nsradmin -p 390113 -s returns with an entry for the physical node it is attached to.
Physical nodes backup fine.
Networker server is Solaris 10 running Networker 7.3.2 build 386
Networker client is Solaris 8 running NetWorker 7.1.3 build 404

Any input would be appreciated
Thanks

6 Operator

 • 

14.4K Posts

 • 

56.2K Points

June 28th, 2007 04:00

You may wish to consider upgrading your client. Also, check nsrnmo script - if client side RMAN push works then usually it is nsrnmo script which needs some tweak to make scheduled backup work. Do you get anything in nsrnmo log?

4 Posts

June 29th, 2007 00:00

Forgot to mention that it is Oracle 9i RAC and the NMO version is 4.1
According the nmo.messages, we are seeing the following errors

SBT-9216 06/24/07 07:05:33 do_info2: could not locate save set: logs1106_CESP1evik2301_1_1
SBT-9216 06/24/07 07:05:33 do_info2: could not locate save set: logs1106_CESP1euik2301_1_1
SBT-9216 06/24/07 07:05:34 do_info2: could not locate save set: level0hot1206_CESP1f0ik4ltd_1_1
SBT-9216 06/24/07 07:05:34 do_info2: could not locate save set: level0hot1206_CESP1f1ik4lte_1_1
SBT-9216 06/24/07 07:05:34 do_info2: could not locate save set: logs1206_CESP1f3ik4na6_1_1
SBT-9216 06/24/07 07:05:35 do_info2: could not locate save set: logs1206_CESP1f2ik4na6_1_1
SBT-9216 06/24/07 07:05:35 do_info2: could not locate save set: logs1206_CESP1f4ik4nbu_1_1
SBT-9216 06/24/07 07:05:35 do_info2: could not locate save set: level0hot1306_CESP1f5ik7a9b_1_1
SBT-9216 06/24/07 07:05:36 do_info2: could not locate save set: level0hot1306_CESP1f6ik7a9b_1_1

and so on.....

On a another note, we have discovered that for the last couple of days, the indexes for the physical node have started writing themselves to the CFI entry for the virtual node.
Thanks

6 Operator

 • 

14.4K Posts

 • 

56.2K Points

June 29th, 2007 02:00

I used NMO 4.2 for RAC and had no issues. You must use NSR_CLIENT in RMAN script - this is mandatory.

4 Posts

July 2nd, 2007 06:00

The contents of the rman script are as follows if it helps at all?

configure snapshot controlfile name to '/oraarch/CESP/snap_CESP.cf';
configure backup optimization off;
configure datafile backup copies for device type 'sbt_tape' to 1;
configure archivelog backup copies for device type 'sbt_tape' to 1;
configure datafile backup copies for device type disk to 1;
configure archivelog backup copies for device type disk to 1;
configure retention policy to recovery window of 14 days;

configure controlfile autobackup on;
configure controlfile autobackup format for device type 'sbt_tape'
to 'CESP_%F';
configure controlfile autobackup format for device type disk
to 'CESP_%F';

configure device type 'sbt_tape' parallelism 4;
configure channel device type 'sbt_tape' format = 'RMAN:/%d_%T_%U/'
parms 'ENV=(NSR_SERVER=mm1legc,
NSR_CLIENT=appcespa-t,
NSR_DATA_VOLUME_POOL=Oracle1M,
NSR_GROUP=0030Saves_MM)';
configure device type disk parallelism 4;
configure channel device type disk format '/oraback/CESP/%U';
configure default device type to sbt;

Thanks

6 Operator

 • 

14.4K Posts

 • 

56.2K Points

July 16th, 2007 10:00

The contents of the rman script are as follows if it helps at all?

Well, does it work?

I missed if you use catalog or not, if not try something like this:

rman nocatalog <{
  configure retention policy to recovery window of 7 days;
  configure default device type to 'SBT_TAPE';
  configure device type disk parallelism 4;
  configure device type 'SBT_TAPE' parallelism 4;
  configure controlfile autobackup on;
 
  configure controlfile autobackup format for device type disk to
'/opt/oracle/admin/${ORACLE_SID}/backup/cb.cf_%d_%T_%F';
  configure controlfile autobackup format for device type 'SBT_TAPE' to
'cb.cf_%d_%T_%F';
 
  configure channel device type disk format
'/opt/oracle/admin/${ORACLE_SID}/backup/cb.df_%d_%T_%U';
  configure channel device type 'SBT_TAPE' parms
'ENV=(NSR_SERVER=mm1legc,NSR_DATA_VOLUME_POOL=Oracle1M,NSR_SAVESET_RETENTION=Month,NSR_CLIENT=appcespa-t)'
format 'cb.df_%d_%T_%U';
 
  configure snapshot controlfile name to
'/opt/oracle/admin/${ORACLE_SID}/backup/snapcf_${ORACLE_SID}.f';
 
  show all;
}
 
exit;
 
EOF

However, I suspect backup command and nsrnmo script might be your issue given that client push works for you (which basically means you can ignore what I have posted above).
No Events found!

Top