CONTENTS   NextPrevious  



User Tool

User Tool Overview

User Tool enables you to add user groups authorized to server resources. For example, DBTool cannot start creating pools without available groups, so the system administrator must first create the user groups.

This task is performed in the following steps:

The usertool script file is located in <SAPj2eeEngine_install_dir>/tools directory.

XML Structure for User Tool

This XML file is organized hierarchically, and requires the following structure:

<user-tool>
<!-- exactly 1 <login-info> must be specified -->
   <!-- the tag <port> is optional -->
          <login-info>
          <host>localhost</host>
          <port>3011</port>
          <user-name>Administrator</user-name>
          <user-password />
          </login-info>
   <!-- (0..n) <group> must be specified -->
          <!-- at least 1 <parent-group> must be specified per <group> ->
          <!-- if group already exists, the parents are added -->
          <group>
          <name>financial</name>
          <parent-group>manager</parent-group>
          </group>
          <group>             
         <name>manager</name>
          <parent-group>root</parent-group>
          </group>
</user-tool>

The  <login-info> tag defines the login properties of the new user group with their values:

The <group> tag defines the new group name and its parent group:

Previous  Next