cookbook:tivolistoragemanagement
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
cookbook:tivolistoragemanagement [2018/10/04 02:21] – [Syncronization] Scott Cunliffe | cookbook: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, | ||
- | |||
- | TSM is designed around several database tables that must be queried to get a complete list of tapes. These tables are: | ||
- | * **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. | ||
- | * **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. | ||
- | |||
- | |||
- | ===== Data Extraction ===== | ||
- | |||
- | ==== 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 " | ||
- | </ | ||
- | |||
- | ==== 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\\ | ||
- | |||
- | <sxh> | ||
- | dsmadmc -dataonly=yes -id=userid -pa=password -tcpserveraddress=tsm01.gazillabyte.local -displaymode=table -outfile=TSM-Volumes.csv -commadelimited " | ||
- | </ | ||
- | |||
- | ==== Syncronization ==== | ||
- | |||
- | <note important> | ||
- | |||
- | Synchronization with TapeTrack is performed by calling the [[cli: | ||
- | - 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> | ||
- | :: Stop processing if we hit a command error | ||
- | #!/bin/bash | ||
- | |||
- | :: Set some environmental variables. | ||
- | set -e | ||
- | set OUTDIR=/ | ||
- | set ETC=/ | ||
- | set UID=TSMusername | ||
- | set PW=TSMpassword | ||
- | set TSMIP=tsm01.gazillabyte.local | ||
- | |||
- | echo "Step 1: Extracting DRM information from TSM Server: " $TSMIP | ||
- | |||
- | :: Connect to TSM and get the DRM table. | ||
- | dsmadmc -dataonly=yes -id=$UID -pa=$PW -tcpserveraddress=$TSMID -displaymode=table -outfile=$OUTDIR/ | ||
- | |||
- | echo "Step 2: Synchronizing with TapeTrack" | ||
- | |||
- | :: Synchronize off the DRM table. | ||
- | TMSS10Sync -a -d $ETC/ | ||
- | |||
- | echo "Step 3: Extracting Volume information from TSM Server: " $TSMIP | ||
- | |||
- | :: Connect to TSM and get the Volume table. | ||
- | dsmadmc -dataonly=yes -id=$UID -pa=$PW -tcpserveraddress=$TSMID -displaymode=table -outfile=$OUTDIR/ | ||
- | |||
- | echo "Step 4: Synchronizing with TapeTrack" | ||
- | |||
- | :: Synchronize off the Volume table. | ||
- | TMSS10Sync -a -d $ETC/ | ||
- | |||
- | :: Check to see if today is Monday. | ||
- | if [[ $(date +%u) -eq 1 ]] ; then | ||
- | echo TMSS10MoveScratch -S user: | ||
- | |||
- | </ | ||
- | |||
- | === Example Synchronization Definition === | ||
- | |||
- | <note tip>TSM is highly configurable, | ||
- | * **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. | ||
- | |||
- | The following definition file assumes default TSM locations and two Repositories (OFFS and LIBR) in TapeTrack | ||
- | </ | ||
- | <sxh> | ||
- | # Set input file | ||
- | SetFile(" | ||
- | # | ||
- | # Set the Customer and Media as literal values as they never change | ||
- | # | ||
- | SetLiteral(CUSTOMER, | ||
- | SetLiteral(MEDIA, | ||
- | # | ||
- | # Set the delimiter to a CSV | ||
- | # | ||
- | SetCSVDelimiter("," | ||
- | # | ||
- | # Set the Volume ID | ||
- | Extract(VOLUME, | ||
- | # | ||
- | # Set the volume description from pool name | ||
- | Extract(DESCRIPTION, | ||
- | # | ||
- | # get the repository value | ||
- | Extract(REPOSITORY, | ||
- | # Translate repository value based off initial value | ||
- | # If Repository = Vault, Courier or Courier Retrieve set Repository to OFFS | ||
- | # If Repository = Anything else (Mountable, Vault Retrieve) set Repository to LIBR | ||
- | AddTranslation(REPOSITORY, | ||
- | AddTranslation(REPOSITORY, | ||
- | AddTranslation(REPOSITORY, | ||
- | # Set all volumes to scratch | ||
- | SetLiteral(SCRATCH, | ||
- | </ | ||
- | |||
- | [[: |
cookbook/tivolistoragemanagement.1538619694.txt.gz · Last modified: 2025/01/21 22:07 (external edit)