TapeTrack Documentation

Because there is more to tape management than you ever realized

User Tools

Site Tools


cookbook:tivolistoragemanagement

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
cookbook:tivolistoragemanagement [2018/10/04 00:15] – [Syncronization] Scott Cunliffecookbook:tivolistoragemanagement [2018/10/10 15:07] (current) – removed Gerard Nicol
Line 1: Line 1:
-====== Tivoli Storage Manager Sync Cookbook ====== 
- 
-Tivoli Storage Manager (or TSM) is IBM's enterprise backup solution, and provides both a command line interface program that can be used to query the information required for synchronization, and ODBC driver that allows you to directly query data from the TSM database. 
- 
-TSM is designed around several database tables that must be queried to get a complete list of tapes. These tables are: 
-The Volume Table. This table lists all tapes that contain active data for a given TSM system. Any Volume that become scratch and is no longer managed by the DRM subsystem will be dropped from this table. 
-The DRM Table. This table lists all tapes are considered critical for recovery purposes. 
-The Library Table. This table is only available on servers that are considered library masters and lists all Volumes that are in an ATL environment. This table will also include scratch tapes that are currently in an ATL. 
- 
-TSM is highly configurable, but by default has the following locations that a tape may be in: 
-  * **Mountable** The Volume is available for use. 
-  * **Courier** The Volume is waiting to be picked-up to be take off-site. 
-  * **Courier Retrieve** The Volume has been picked-up to be taken off-site. 
-  * **Vault** The Volume is currently believed to be off-site. 
-  * **Vault Retrieve** The Volume needs to be returned from off-site. 
- 
-===== Data Extraction ===== 
- 
-==== Extracting the Volume Table ==== 
- 
-Call the TSM command line dsmadmc, \\ 
-Suppress headings and pass userid and password.\\ 
-Pass TSM server name.\\ 
-Output in table mode to file TSM-Volumes.csv.\\ 
-Output in CSV mode and pass query data\\ 
- 
-dsmadmc -dataonly=yes -id=userid -pa=password -tcpserveraddress=tsm01.gazillabyte.local -displaymode=table -outfile=TSM-Volumes.csv -commadelimited "select volume_name,location,stgpool_name from volumes" 
- 
-==== Extracting the DRM Table ==== 
- 
-Call the TSM command line dsmadmc, \\ 
-suppress headings and pass userid and password. \\ 
-Pass TSM server name. \\ 
-Output the data in table mode to file TSM-Volumes.csv. \\ 
-Output in CSV mode and pass query data. \\ 
- 
-<sxh> 
-dsmadmc -dataonly=yes -id=userid -pa=password -tcpserveraddress=tsm01.gazillabyte.local -displaymode=table -outfile=TSM-DRM.csv -commadelimited "select volume_name,state,stgpool_name from drmedia" 
-</sxh> 
-==== Syncronization ==== 
- 
-<note important>You will need to install the [[cli:sync_suite|TapeTrack Sync software]] to complete these instructions.</note> 
- 
-Synchronization with TapeTrack is performed by calling the [[cli:TMSS10Sync|TMSS10Sync]] command line program, along with: 
-  - The CSV file produced from the DRM table 
-  - The CSV file produced from the Volume table 
-  - A synchronization definition file that instructs the program how to interpret the TSM table outputs. 
- 
-=== Example Command Line Arguments === 
- 
-<sxh> 
-#!/bin/bash 
-set -e 
-set OUTDIR=/var/tapetrack/reports 
-set ETC=/etc/tapetrack 
-set UID=TSMusername 
-set PW=TSMpassword 
-set TSMIP=tsm01.gazillabyte.local 
- 
-echo "Step 1: Extracting DRM information from TSM Server: " $TSMIP 
- 
-dsmadmc -dataonly=yes -id=$UID -pa=$PW -tcpserveraddress=$TSMID -displaymode=table -outfile=$OUTDIR/TSM-DRM.csv  -commadelimited "select volume_name,state,stgpool_name,voltype from drmedia"  
- 
-</sxh> 
  
cookbook/tivolistoragemanagement.1538612147.txt.gz · Last modified: 2025/01/21 22:07 (external edit)