Sample RACF to ACF2 conversion for consolidated RACF jobs IWNRACF1 and IWNRACF2
This sample assumes one CSM default administrator CSMADMIN, which will be associated with the CSM address space started tasks IWNSRV and IWNAUTH.
Parameters were customized in previous setup jobs as following:
_ #group_name = CSM
_ #gid = 123
_ #csm_user = CSMADMIN
_ #uid = 123
_ #ussPath = /u/CSMADMIN
_ #csm_pw = PASSWORD
_ #interval = NOINTERVAL
Example 4-1 Create consolidated user account for CSM administrator and address spaces
/* Define Copy Services Manager login user ID */
ADDGROUP CSM OMVS(GID(123))
ADDUSER CSMADMIN DFLTGRP(CSM) OMVS(UID(123) +
HOME(/u/CSMADMIN) +
PROGRAM(/bin/sh)) +
NAME('Copy Services Manager User ID')
ALU CSMADMIN PASSWORD(PASSWORD) NOEXPIRED
PASSWORD INTERVAL(NOINTERVAL) USER(CSMADMIN)
/* Define the started profiles. */
RDEF STARTED IWNSRV.* UACC(NONE) STDATA(USER(CSMADMIN))
RDEF STARTED IWNAUTH.* UACC(NONE) STDATA(USER(CSMADMIN))
Release : 16.0
Component : ACF2 for z/OS
/* Define Copy Services Manager loginid and group - ACF2 Translation */
SET P(GROUP) DIV(OMVS)
INSERT CSM GID(123)
SET LID
INSERT CSMADMIN NAME('Copy Services Mngr') -
PASSWORD(PASSWORD) MAXDAYS(0) LIDZMAX NOPSWD-EXP -
HOME(u/CSMADMIN) OMVSPGM(/bin/sh) UID(123) GROUP(CSM)
If the USER and GROUP profile records are resident in
the INFODIR, the following commands should be issued.
In a shared database environment, these commands will
need to be issued on all systems sharing the database:
F ACF2,REBUILD(USR),CLASS(P),DIVISION(OMVS)
F ACF2,REBUILD(GRP),CLASS(P),DIVISION(OMVS)
F ACF2,OMVS
_______________________________________________________
/* Define the started profiles - ACF2 Translation */
SET C(GSO)
INSERT STC.IWNSRV LOGONID(CSMADMIN) STCID(IWNSRV)
INSERT STC.IWNAUTH LOGONID(CSMADMIN) STCID(IWNAUTH)
F ACF2,REFRESH(STC)