Starting the started task
Start the AXQTINIT
started task, with PARM
set to ACT
, DEACT
, or ACTDYN
.
It is strongly recommended that you add the startup of the Advanced Archive for DFSMShsm address space to your
automated IPL procedures.
Before you begin
ALLOCOPT
) before you start
AXQTINIT
.Procedure
Issue the following command: S
AXQTINITS MXQTINIT
Note: Should you need to shut down HSM, be aware that you must first stop AXQTINIT.
Internet Protocol Version 6 (IPv6)
You can enable IPv6 for MXQAXQ by adding a DD statement in the job step where either an archive or restore function can be performed. Use the following format for adding the DD statement:
//AXQIPV6L DD
DUMMY
Complete the following tasks before enabling IPv6:
- To successfully connect and properly function, update the IP address for the cloud server in the ISPF interface.
- Specify the IP address as hostname rather than numeric address.
- Only the hostname with IPv6 address will be connected when IPv6 is enabled. Cloud server definition with IPv4 address will not be connected.
Example
Following is the example for job step to archive datasets:
//* ARCHIVE THE TEST DATASET
//*******************************************************************
//ARCHIVE1 EXEC PGM=AXQRCHIV, COND=(0,NE,HMIGRATE)
//AXQPRLIB DD DISP=SHR, DSN=RSQA.AXQ.R110.SAXQPARM
//LOGMSG DD SYSOUT=*
//STDOUT DD SYSOUT=*
//AXQIPV6L DD DUMMY
//LOGDEBUG DD DUMMY
//CRITERIA DD *
--------------------------------------------------------------------
GROUP_NAME=AXQ92S05
DSN=RSTEST.RAM.AXQRT.FILE*
//*
Following is the example for job step to restore datasets
//*RESTORE THE ARCHIVED DATASETS
//*****************************************************************
//RAMRESTER EXEC PGM=AXQRESTR
//AXQPRLIB DD DISP=SHR, DSN=RSQA.AXQ.R110.SAXQPARM
//LOGMSG DD SYSOUT=*
//AXQIPV6L DD DUMMY
//STDOUT DD SYSOUT=*
//LOGDEBUG DD DUMMY
//CRITERIA DD *
-------------------------------------------------------------------
DSN=RSTEST.RAM.AXQRT.**
//*