Hiding the Start a community button from unauthenticated users
You can prevent unauthenticated users from creating communities by hiding the Start a Community button.
Before you begin
To edit configuration files, you must use the IBM® WebSphere® Application Server wsadmin client. See Starting the wsadmin client for details.
About this task
Note: Users must have the community-creator
role in order to create communities. For more information about this
role, see Roles.
Procedure
To configure the show.startCommunity.To.Unauthenticated
property, complete the following steps.
- 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 do not execute correctly.
- Start the Communities Jython script interpreter.
- Optional: To check the current setting of the
property, use the following command:
CommunitiesConfigService.showConfig()
Look for the following property in the output that displays:show.startCommunity.To.Unauthenticated.enabled = true
- If you want to change the value of the show.startCommunity.To.Unauthenticated
property, use the following command:
CommunitiesConfigService.updateConfig("property", "value")
where- property is one of the editable Communities configuration properties.
- value is the new value with which you want to set that property.
The following table displays information regarding the show.startCommunity.To.Unauthenticated property and the type of data that you can enter for it.
Table 1. The show.startCommunity.To.Unauthenticated property Property Description show.startCommunity.To.Unauthenticated When enabled, this property displays the Start a Community button to unauthenticated users. This property takes a Boolean value: true or false.
For example:CommunitiesConfigService.updateConfig("show.startCommunity.To.Unauthenticated", "false")
- After making changes, you must check the configuration files back in, and you must do so during the same wsadmin session in which you checked them out for the changes to take effect. See Applying property changes in Communities for information about how to save and apply your changes.