Creating a RACF group for system administrators and adding system administrators to the group

To limit the number of users with system administration privileges, you need to create a RACF group for system administrators at the Spiffy company.

Procedure

  1. Define a RACF group for system administrators.
  2. Add IDs of system administrators to the group.

Example

To add user DB2OWNER, add RACF group DB2SYSTM with DB2OWNER as the owner, and add user ID ADMF005 to DB2SYSTM, use the following statements:
ADDUSER  DB2OWNER  CLAUTH(DSNR USER) UACC(NONE)          
ADDGROUP DB2SYSTM SUPGROUP(SYS1) OWNER(DB2OWNER)           
CONNECT DB2OWNER GROUP(DB2SYSTM) AUTHORITY(JOIN) UACC(NONE)
ALTUSER DB2OWNER DFLTGRP(DB2SYSTM)                         
CONNECT ADMF005 GROUP(DB2SYSTM)