Previous Topic: Define Resources in CA Top Secret

Next Topic: Command Authority Levels

Define Resources in RACF

To define and activate the resources in RACF

  1. Issue the following RACF commands:
    RDEFINE FACILITY SOLVE.ADMIN UACC(NONE)
    RDEFINE FACILITY SOLVE.OPER  UACC(NONE)
    RDEFINE FACILITY SOLVE.NOPER UACC(NONE)
    RDEFINE FACILITY SOLVE.MON   UACC(READ) (see note)
    SETROPTS RACLIST(FACILITY) REFRESH
    

    Note: If you do not want to allow general browse access, specify:

    RDEFINE FACILITY SOLVE.MON   UACC(NONE)
    
  2. To connect users to the resources, issue commands like the following:
    PERMIT SOLVE.ADMIN  CLASS(FACILITY)  ID(USER1)
    PERMIT SOLVE.NOPER  CLASS(FACILITY)  ID(USER2)
    

    Note: The default access is READ, which is sufficient.