Define the Job Monitor started task

The following sample RACF® commands create the BLZJMON started tasks, with protected user IDs (STCJMON) and with group STCGROUP assigned to them. Replace the #group-id and #user-id-* placeholders with valid OMVS IDs.
  • ADDGROUP STCGROUP OMVS(GID(#group-id))
    DATA('GROUP WITH OMVS SEGMENT FOR STARTED TASKS')
  • ADDUSER STCJMON DFLTGROUP(STCGROUP) NOPASSWORD NAME('JOB MONITOR')
    OMVS(UID(#user-id-jmon) HOME(/tmp) PROGRAM(/bin/sh) NOASSIZEMAX)
    DATA('RATIONAL TEAM CONCERT')
  • RDEFINE STARTED BLZJJCL.* DATA('JOB MONITOR')
    STDATA(USER(STCJMON) GROUP(STCGROUP) TRUSTED(NO))
  • SETROPTS RACLIST(STARTED) REFRESH
Note: Ensure that the started task user ID is protected by specifying the NOPASSWORD keyword.

Feedback