Disabling the social analytics service
The social analytics widgets help users to discover how they are connected to other users and content, and suggest network contacts and content that might interest them. The social analytics service is enabled by default.
Before you begin
About this task
When you disable the social analytics service,
the following widgets are removed from the user interface:
- Do You Know (Profiles)
- Recommendations (Communities)
- Recommendations (Home page)
- Who Connects Us? (Profiles)
- Things in Common (Profiles)
You disable the social analytics service by using wsadmin
commands to set the sand.enabled and sand.ssl.enabled properties in
the LotusConnections-config.xml file to false.
For more information about changing common configuration properties,
see Changing common configuration property values.
<sloc:serviceReference serviceName="sand"
enabled="false"
ssl_enabled="false">
<sloc:href>
<sloc:hrefPathPrefix>/news/common/sand</sloc:hrefPathPrefix>
<sloc:static href="admin_replace" ssl_href="admin_replace"/>
</sloc:href>
</sloc:serviceReference>
Procedure
To disable the social analytics service, complete the
following steps.
- Use the wsadmin client to access and check out the HCL Connections configuration files:
- Optional:
If you want to find out the current value of a property, you
can list the current configuration settings and values by using the
following command:LCConfigService.showConfig()
- To disable the social analytic service, enter the following
commands:
LCConfigService.updateConfig("sand.enabled","false") LCConfigService.updateConfig("sand.ssl.enabled","false")
What to do next
Check the configuration files back in during the same wsadmin session in which you checked them out. For more information, see the Applying common configuration property changes topic.