Previous Topic: ADDGRPNext Topic: ALTUSER


ADDUSER

RACF uses the ADDUSER command to define a new user to its database and to define the profile information necessary to allow that user to use the desired components of the system. CA Top Secret does this using ACID and PROFILE records. The ADDUSER command is the same as the ADD command in CA Top Secret. For example:

ADDUSER USER01 DFLTGRP(OMVSGRP) OMVS(UID(200) HOME(/)
 PROGRAM(/bin/sh)) PASSWORD(password)

In CA Top Secret, this would be as follows:

TSS CREATE(USER01) TYPE(USER)
                   DEPARTMENT(dept1)
                   PASSWORD(password,0)
TSS ADDTO(USER01) GROUP(OMVSGRP)
                  UID(200)
                  HOME(/)
                  PROGRAM(/bin/sh)