Upgrading from V3.0
Tenants, tenant administrators, and tenant users of the previous version are transferred as it is. The transfer operation here is unnecessary.
Upgrading from V2.3
The tenant management role cannot operate tenants and L-Servers in tenants operating on V2.3.
To make the tenant management role operate the tenant that is operating it with V2.3, you need to transfer the tenant to the newly made tenant.
Transferred Data of Tenants
Users (users who operates the tenant as tenant administrators, tenant operators, and tenant monitors)
Resources in local pools of tenants
L-Servers
Use the multiple roles and operate tenants when the transfer is unnecessary. When one user operates two or more tenants, it is necessary to use the multiple role.
Use the following procedure to transfer tenants and tenant administrators.
Create a new tenant.
In [Tenant] tab of ROR console, create a Tenant.
Modify tenant users.
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" in 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 of tenant administrators, refer to "14.8.1 Tenant Management Roles and Tenant User Role" in the "Reference Guide (Command/XML) CE".
Example
Example of the XML definition in which the tenant administrator role of "NewTenant" is allocated to the user "john"
<?xml version="1.0" encoding="utf-8"?> <Users> <User name="john"> <Roles> <Role name="tenant_admin"> <Scopes> <Scope>NewTenant</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 |
Move resources.
In [Resource] tab of ROR console, move following resources in the old tenant to the new tenant. Move resources after stopping it when L-Server starts.
Resources in the local pool
Moves to a local pool or a global pool of the tenant that newly made it.
L-Servers
Move to the tenant that newly made it.
Import L-Servers to the L-Platform
Import L-Servers to the L-Platform by using the cfmg_importlserver command.
> cfmg_importlserver -user john -org NewTenant -lserver /NewTenant/lserverA |
Delete the old tenant.
Delete the old tenant by using the rcxadm tenant delete command.
> rcxadm tenant delete -name /OldTenant |