Reparenting communities
Use the reparenting commands to modify a community to become a subcommunity of another community. You can also modify a subcommunity to become a top-level community.
Before you begin
About this task
Some communities might need to become subcommunities of other communities. Use the reparenting commands to make communities into subcommunities, or make subcommunities into top-level communities.
Procedure
- Start the wsadmin client from the following
directory of the system on which you installed the Deployment Manager:
where app_server_root is the WebSphere® Application Server installation directory and dm_profile_root is the Deployment Manager profile directory, typically dmgr01.app_server_root\profiles\dm_profile_root\bin
You must start the client from this directory or subsequent commands that you enter will not execute correctly.
- Start the Communities Jython script interpreter
using the following command:
If prompted to specify a service to connect to, type 1 to pick the first node in the list. Most commands can run on any node. If the command writes or reads information to or from a file using a local file path, you must pick the node where the file is stored.execfile("communitiesAdmin.py")
- Use the following commands to reparent communities or subcommunities:
- CommunitiesService.moveSubcommunityToCommunity("subCommunityUuid")
Modifies a subcommunity to become a top-level, stand-alone community.
The command takes the following parameters:- subCommunityUuid
- The UUID of the subcommunity to be made a top-level, stand-alone community.
Example:
When the command completes successfully, it returns the following message:wsadmin>CommunitiesService.moveSubcommunityToCommunity ("1f524616-a53b-48fb-8e26-ffa1b2ee045f")
moveSubcommunityToCommunity request processed
Notes: You can get the UUID for a community or subcommunity by taking one of the following actions:When you use moveSubcommunityToCommunity, the new top-level community retains the following characteristics of the original subcommunity:- Using a browser, open the community or subcommunity that you want and copy the UUID from the URL.
- Run the CommunitiesService.fetchAllComm() wsadmin command to fetch all communities and subcommunities on the server. Copy the UUID from the output.
- Original access level (public, moderated, or restricted)
- Membership list
- Community logo (picture), tags, and description
- Community theme
- Original start page setting
- Any existing web addresses Note: The URL to access this community changes slightly because the parent handle no longer exists.
- CommunitiesService.moveCommunityToSubcommunity("parentCommunityUuid", "communityToMoveUuid")
Reparents a community to be the subcommunity of another community.
The command takes the following parameters:- parentCommunityUuid
- The UUID of the parent community.
- CommunityToMoveUuid
- The UUID of the existing community that becomes a child of the community that is specified in the parentCommunityUuid parameter.
Example:
The reparented subcommunity is modified as follows:wsadmin>CommunitiesService.moveCommunityToSubcommunity("1f524616-a53b-48fb-8e26-ffa1b2ee045f", "1f524616-a53b-48fb-8e26-ffa4b2ee095f")
- The new subcommunity with existing web address is cleared.
Any "Invited" users on the subcommunity that have not accepted or declined the invitation are removed. Click the Invitations tab on a community. You can see the invited users the Members page.
When you use moveCommunityToSubommunity, the new subcommunity retains the following characteristics of the original top-level community:- Start page setting.
- Community logo (picture), tags, and description.
- Community theme.
- Community owners in the parent are copied to the new subcommunity as owners.
- Subcommunity members and owners are copied to the new parent as members.
Note: Using moveCommunityToSubcommunity generates an error if you attempt the following reparenting actions:- Reparent a community that has subcommunities.
- Reparent a community that is already a subcommunity
Community access levels: A subcommunity cannot be less restrictive than its parent. Therefore, when you run moveCommunityToSubcommunity, the access level of the community that is being moved to a subcommunity can be modified as follows:Table 1. Community access levels Community A (parent) Community B (before it is made a subcommunity of A) Community B (after it is made a subcommunity of A) Public Public Unchanged Public Moderated Unchanged Public Restricted (unlisted) Unchanged Public Restricted (listed) Unchanged Moderated Public Moderated Moderated Moderated Unchanged Moderated Restricted (unlisted) Unchanged Moderated Restricted (listed) Unchanged Restricted (unlisted) Public Restricted (unlisted) Restricted (unlisted) Moderated Restricted (unlisted) Restricted (unlisted) Restricted (unlisted) Unchanged Restricted (unlisted) Restricted (listed) Restricted (unlisted) Restricted (listed) Public Restricted (unlisted) Restricted (listed) Moderated Restricted (unlisted) Restricted (listed) Restricted (unlisted) Unchanged Restricted (listed) Restricted (listed) Unchanged Restricted (unlisted) communities are restricted communities where the community owner has left Let anyone in my organization see the community's title, description, tags, and owners unchecked when creating the community.
Restricted (listed) communities are restricted communities where the community owner has selected Let anyone in my organization see the community's title, description, tags, and owners when creating the community.