Grant partial administrative access to some namelists on a queue manager, to each group
of users with a business need for it.
About this task
To grant limited administrative access to some namelists for some actions, use the
appropriate commands for your operating system. On the following platforms, you can also use the
SET AUTHREC command:
- IBM® i
- Linux®
- UNIX
- Windows
Note: On
IBM MQ Appliance you can use
only the
SET AUTHREC command.
Procedure
-
On UNIX, Linux, and Windows:
setmqaut -m QMgrName -n ObjectProfile -t namelist -g GroupName ReqdAction
-
On IBM i:
GRTMQMAUT OBJ(' ObjectProfile ') OBJTYPE(*NMLIST) USER(GroupName) AUT(ReqdAction) MQMNAME(' QMgrName ')
-
On z/OS®:
RDEFINE MQADMIN QMgrName.NAMELIST. ObjectProfile UACC(NONE)
PERMIT QMgrName.NAMELIST. ObjectProfile CLASS(MQADMIN) ID(GroupName) ACCESS(ALTER)
These commands grant access to the specified namelist. To determine which MQSC commands the user can
perform on the namelist, issue the following commands for each MQSC command:
RDEFINE MQCMDS QMgrName. ReqdAction.NAMELIST UACC(NONE)
PERMIT QMgrName. ReqdAction.NAMELIST CLASS(MQCMDS) ID(GroupName) ACCESS(ALTER)
To permit the user to use the DISPLAY NAMELIST command, issue the following commands:
RDEFINE MQCMDS QMgrName.DISPLAY.NAMELIST UACC(NONE)
PERMIT QMgrName.DISPLAY.NAMELIST CLASS(MQCMDS) ID(GroupName) ACCESS(READ)
The variable names have the following meanings:
- QMgrName
- The name of the queue manager.
On z/OS, this value can also be the name of a queue sharing group.
- ObjectProfile
- The name of the object or generic profile for which to change authorizations.
- GroupName
- The name of the group to be granted access.
- ReqdAction
- The action you are allowing the group to take:
- On UNIX, Linux, and Windows, any combination of the following authorizations: +chg, +clr, +crt, +dlt, +ctrl, +ctrlx,
+dsp. The authorization +alladm is equivalent to +chg +clr +dlt +dsp.
- On IBM i, any combination of the
following authorizations: *ADMCHG, *ADMCLR, *ADMCRT, *ADMDLT, *ADMDSP, *CTRL, *CTRLX. The
authorization *ALLADM is equivalent to all these individual authorizations.
- On z/OS, one of the values ALTER,
CLEAR, DEFINE, DELETE, or MOVE.