Allocate appropriate roles to the users operating as tenant administrators, tenant operators, or tenant monitors among users operating on the earlier versions.
Use the following procedure to allocate roles to users.
Output the user information in files in XML format.
>rcxadm user list -format xml > myusers.xml |
For details on the rcxadm user command, refer to "7.1 rcxadm user" of the "Reference Guide (Command/XML) CE".
Edit the XML files.
Delete the information of other users from the XML file, so that only the users operating as tenant administrators, tenant operators, and tenant monitors remain.
Define the tenant administrator roles to allocate.
Add the following information:
Email address
First name
Family name
For details on the XML definition in which the tenant administrators, refer to "13.8.1 Tenant Management Roles and Tenant User Role" of the "Reference Guide (Command/XML) CE".
Example
Example of the XML definition in which the tenant administrator role of "tenantA" is allocated to the user "john"
<?xml version="1.0" encoding="utf-8"?> <Users> <User name="john"> <Roles> <Role name="tenant_admin"> <Scopes> <Scope>tenantA</Scope> </Scopes> </Role> </Roles> <MailAddress>john@mail.example.com</MailAddress> <ActualName> <FirstName>john</FirstName> <LastName>fujitsu</LastName> </ActualName> </User> </Users> |
Allocate the tenant administrator roles to the user by specifying the XML file edited in the rcxadm user command.
>rcxadm user modify -file my_tenantadmins.xml |