Define the z/OS Explorer started tasks

The following sample RACF® commands create the JMON, and RSED started tasks, with the STCJMON and STCRSE protected user IDs, and the STCGROUP group assigned to them.
  • ADDGROUP STCGROUP OMVS(AUTOGID)
    DATA('GROUP WITH OMVS SEGMENT FOR STARTED TASKS')
  • ADDUSER STCJMON DFLTGRP(STCGROUP) NOPASSWORD NAME('JES JOBMONITOR') 
    OMVS(AUTOUID HOME(/tmp) PROGRAM(/bin/sh) 
    DATA('IBM Explorer for z/OS')  
  • ADDUSER STCRSE DFLTGRP(STCGROUP) NOPASSWORD NAME('RSE DAEMON')
    OMVS(AUTOUID HOME(/tmp) PROGRAM(/bin/sh) ASSIZEMAX(2147483647)
    DATA('IBM Explorer for z/OS')
  • RDEFINE STARTED JMON.* DATA('JES JOBMONITOR')
    STDATA(USER(STCJMON) GROUP(STCGROUP) TRUSTED(NO))
  • RDEFINE STARTED RSED.* DATA('RSE DAEMON')
    STDATA(USER(STCRSE) GROUP(STCGROUP) TRUSTED(NO))
  • SETROPTS RACLIST(STARTED) REFRESH
Note:
  • Ensure that the started tasks user IDs are protected by specifying the NOPASSWORD keyword.
  • Ensure that RSE server has a unique OMVS uid, which is required due to the z/OS® UNIX related privileges granted to this uid.