cancel
Showing results for 
Search instead for 
Did you mean: 

Which drive(s) utilize particular media?

Jay_Son
Level 5

Hi

 

I'm wondering if there was an easy way to extract information from NetBackup about a media (that went bad). I was hoping that there was a "bp" or "nb" command to list the tape drives used for a particular media/tape or backup image (eg. su20386_1307192442). Our Activity monitor goes back 7 days only. So, can you send me a command / script to run from my AIX NBU environment to see this information. I believe one of the drives in out library is causing lots and lots of problems.

Thanks

JaY Son

3 REPLIES 3

Marianne
Level 6
Partner    VIP    Accredited Certified

Try 'bperror -media -d <start-date> -e <end-date> |grep <media-id>'

You could also try Tape List report and use Filter to search for Media id.

Third option: look at /usr/openv/netbackup/db/media/error file - it contains entries like this: https://www-secure.symantec.com/connect/forums/usropenvnetbackupdbmediaerrors

01/16/07 17:07:19 DFY079 2 WRITE_ERROR HP.SDLT600.002
01/17/07 00:02:32 DFY076 0 POSITION_ERROR HP.SDLT600.000
01/17/07 00:08:53 DFY079 6 WRITE_ERROR HP.SDLT600.006

 

File format in 6.x and 7.x : http://www.symantec.com/docs/TECH48603

The format for the log file entries is: <date> <time> <media id> <drive index> <TapeAlert error>

mph999
Level 6
Employee Accredited

I have a script that will do this, send me the file from the media server (or servers if more than one).

/usr/openv/netbackup/db/media/errors

Let me know the media id.

Send to martin<underscore symbol>holt@symantec.com

 

Many thanks,

Martin

Jay_Son
Level 5

Marianne - Thank you for the command. I tried this and it gave me a list of Tape I'ds (specifying the drive/index #). this leads me to believe that these tapes will need to be inspected thoroughly. Thanks again. :)

 - bperror -media -d 06/01/2011 -e 06/08/2011 | grep HPULTRIUM-TD05 | awk '{print $23}' | sort -u

 

Martin - I will send you the files and see what you can find for me. Thank you.