Quick Start


Migrating from ADSM to Tivoli Storage Manager Version 3.7

Use this procedure if you already have ADSM installed and you have:

Do the following:

  1. Use the BACKUP DB command to dump the contents of the server database to tape. For example:

    Figure AB0CT124 not displayed.

    backup db devclass=cartridge scratch=yes
    

  2. Store the output volumes in a safe location. You will need these volumes if you want to return to the previous server after you have installed the Tivoli Storage Manager Version 3.7 server.

  3. Install Tivoli Storage Manager Version 3.7. Use the TSM for MVS Program Directory.

  4. Update your current server options file if necessary. See Administrator's Reference for the Version 3 options.

  5. Change the REGION parameter on the JCL that is used to start the TSM server (ANRSTART). The recommended region size is 128MB (for example, REGION=128M).

  6. Include an IMAGES DD statement for the administrative web interface image files in the ANRSTART job. For example,
    +--------------------------------------------------------------------------------+
    |//IMAGES     DD   DSN=TIVSM.SANRIMG(WEBSERV2),DISP=SHR                          |
    +--------------------------------------------------------------------------------+

  7. Upgrade your database to the Tivoli Storage Manager Version 3.7 level. Specify the UPGRADEDB parameter in the EXEC statement of the TSM server startup up job ANRSTART. For example,
    +--------------------------------------------------------------------------------+
    |//SERVER  EXEC PGM=DSMSERV,DYNAMNBR=300,PARM='/UPGRADEDB'                       |
    +--------------------------------------------------------------------------------+

  8. Start the server by submitting the Tivoli Storage Manager server startup job with the UPGRADEDB parameter.

  9. Stop the server using the HALT command:

    Figure AB0CT124 not displayed.

    halt

     

  10. Remove PARM='/UPGRADEDB' from the EXEC statement of the server startup job. The upgrade must be done only once.

  11. To use the administrative web interface, modify then run the ANRIDL job from ASAMPLIB. Here is an example of an ANRIDL job:

    Figure 1. Example of Modified ANRIDL Job


    //TIVSM   JOB MSGLEVEL=(1,1)
    //          REGION=128M,TIME=10,CLASS=A,MSGCLASS=H
    //*-----------------------------------------------------*
    //*  This sample JOB loads the server database with Interface
    //*  Definitions that are used for the WEB Administrative Interface.
    //*-----------------------------------------------------*
    SERVER    EXEC PGM=DSMSERV,PARM='/RUNFILE DD:IDL',DYNAMNBR=300
    //OPT         DD DSN=TIVSM.ANRSERV.OPTIONS,DISP=MOD
    //DSMAMENG    DD DSN=TIVSM.SANRMSG(ANRMENU),DISP=SHR
    //HLPAMENG    DD DSN=TIVSM.SANRHLP(ANRHENU),DISP=SHR
    //IDL         DD DSN=TIVSM.SANRIMG(ANRIDL),DISP=SHR
    //DSK         DD DSN=TIVSM.DISKLOG,DISP=SHR
    //SYSPRINT DD SYSOUT=*
    //SYSTERM  DD SYSOUT=*
    

    After IDL initialization completes, the server halts.

    Note:You must specify either HTTPTCPPORT or HTTPICSPORT in the server options file, TIVSM.ANRSERV.OPTIONS, to use the web interface. For details see Configuring the Server for Web Access with IBM TCP/IP and Configuring the Server for Web Access with TCPaccess.

  12. TSM is shipped with sample command scripts that can be loaded into the database and run from an administrative client, administrative web interface, or server console. They can also be included in TSM administrative command schedules. The sample scripts, in the ANRSCRPT member of the ASAMPLIB dataset, are primarily SELECT queries, but also include scripts that define volumes for and extend the database and recovery log and that backup storage pools. To load the sample scripts into the database, run the following job:



    //TIVSM   JOB MSGLEVEL=(1,1)
    //          REGION=128M,TIME=10,CLASS=A,MSGCLASS=H
    //*-----------------------------------------------------*
    //*  This sample JOB loads the server database with sample
    //*  server SCRIPTs.
    //*-----------------------------------------------------*
    //SERVER    EXEC PGM=DSMSERV,PARM='/RUNFILE DD:SCRIPT',DYNAMNBR=300
    //OPT         DD DSN=TIVSM.ANRSERV.OPTIONS,DISP=MOD
    //DSMAMENG    DD DSN=TIVSM.SANRMSG(ANRMENU),DISP=SHR
    //HLPAMENG    DD DSN=TIVSM.SANRHLP(ANRHENU),DISP=SHR
    //SCRIPT      DD DSN=TIVSM.SAMPLIB(ANRSCRPT),DISP=SHR
    //DSK         DD DSN=TIVSM.DISKLOG,DISP=SHR
    //SYSPRINT DD SYSOUT=*
    //SYSTERM  DD SYSOUT=*
    
    Note:The sample scripts may have been loaded when ADSM Version 3.1 was installed. Loading the sample scripts again at this point will overlay any existing scripts of the same name and any modifications made to those scripts will be lost.

  13. Restart the server.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]