[IBM i]

Granting authority to a profile using the IBM i command line using wsadmin scripting

To grant authority to objects and directories in a profile, run the grtwasaut command from the Qshell command line.

About this task

To run the script, perform the following steps:

Procedure

  1. On the IBM® i command line, run the STRQSH (Start Qshell) command.
  2. On the Qshell command line, use the cd command to change to the directory that contains the script:
    cd app_server_root/bin
  3. Run the grtwasaut command:
    grtwasaut -profileName profile [ -user usrprf | -authlist authlist ]
     -dtaaut dataAuth -objaut objAuth
    where profile is the profile to which you are granting authority, usrprf is the user profile to which you are granting authority, authlist is the authorization list to which you are granting authority, dataAuth specifies the data authorities that you are granting to the user specified by the -user parameter, and objAuth specifies the object authorities that you are granting to the user specified by the -user parameter. You do not need to specify both the -user and -authlist parameters, but you must specify at least one of them. For more information on the grtwasaut command and additional parameters, see topics about the grtwasaut command.

Example

In the following example, the user profiles johndoe and jsmith are granted rwx authority to the profile devinst and the associated objects.

grtwasaut -profileName devinst -user "johndoe jsmith" -dtaaut rwx -recursive
In the following example, the user profiles johndoe and jsmith are granted rwx authority to the installedApps subdirectory and all nested objects in the installedApps subdirectory.
grtwasaut -profileName devinst -object installedApps -user "johndoe jsmith" -dtaaut rwx -recursive