Use this procedure if you already have ADSM installed and you have:
Do the following:
![]() |
backup db devclass=cartridge scratch=yes |
+--------------------------------------------------------------------------------+ |//IMAGES DD DSN=TIVSM.SANRIMG(WEBSERV2),DISP=SHR | +--------------------------------------------------------------------------------+
+--------------------------------------------------------------------------------+ |//SERVER EXEC PGM=DSMSERV,DYNAMNBR=300,PARM='/UPGRADEDB' | +--------------------------------------------------------------------------------+
![]() | halt
|
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. |
//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. |