Defining the Debug Profile Service started task

The following sample RACF commands create the EQAPROF started task, with protected user ID (STCEQA) and the STCGROUP group assigned to it:
  1. ADDGROUP STCGROUP OMVS(AUTOGID) - 
    DATA(‘GROUP WITH OMVS SEGMENT FOR STARTED TASKS’)
  2. ADDUSER STCEQA DFLTGRP(STCGROUP) NOPASSWORD - 
    NAME(‘DEBUG PROFILE SERVER’) - 
    OMVS(AUTOUID HOME('/tmp') PROGRAM('/bin/sh')) 
    - DATA('IBM z/OS Debugger')
  3. RDEFINE STARTED EQAPROF.* - 
    STDATA(USER(STCEQA) GROUP(STCGROUP) TRUSTED(NO)) - 
    DATA(‘DEBUG PROFILE SERVICE’)
  4. SETROPTS RACLIST(STARTED) REFRESH
Note: Ensure that the started task user ID is protected by specifying the NOPASSWORD keyword.