Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

mminfo

Status
Not open for further replies.

elchanguito

Technical User
Aug 5, 2002
23
US
Hi,
I have the following problem, if I run mminfo command to show the information about one specific volume, it doesn 't show anything it.
For example,
mminfo -a -r volume -r %Used -r savetime -r barcode | grep AA0000

But If I run this, it return that the volume is full with 31 GB written
mminfo -a -r barcode -r written -r %Used | grep AA0000
AA0000 31 GB full

In the nwadmin GUI, the volume is full too and it hasn 't any save sets it it.

It's happening with a few tapes, the others is ok.

Any help ??

 
mminfo -r ssid,savetime -q volume=AA0000

it will show what savesets are in the volume.
 
That is the problem ... the volume is full but it doesn 't show the save sets

mminfo -r ssid,savetime -q volume=AA0000
mminfo: no matches found for the query

But if I check the volume is full
mminfo -a -r 'barcode,written,%Used,location' | grep -i AA0000
AA0000 21 GB full
 
The command is ok but you better prevent errors by using quotes like this:

mminfo -a -r "volume, %used, savetime, barcode" |grep string

Don't know why there is no output, though. I only gould guess that the search string does not match. If mminfo by
itself runs fine, this would prove my doubt.
 
mminfo -q "barcode=AA0000" -r "volume,%used,barcode"
volume (%) barcode
NT-0020 full AA0000

mminfo -q "barcode=AA0000" -r "volume,%used,ssid,savetime"
mminfo: no matches found for the query

What do you think about this ?
 
As i said in your other thread - you are quering for save sets, not for volumes.
 
mminfo -q "volume=NT-0020" -r "volume,%used,barcode"
volume (%) barcode
NT-0020 full AA0000
 
Try this one :

# mminfo -av -q "volume=NT-0020" -r "volume,%used,barcode"

I think that the output of mminfo is empty because, probably, you don't have made backups since 24 hours.

The mminfo command display only backups for the last 24 hours; so if the volume is full and you would like to see all the save sets, you must put the -a option of the mminfo command in order to display all the save sets.

Marc
 
I need know what savesets are backup of a determinate client

Could the mminfo command help me?

How?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top