Changing Forums configuration property values
Configuration settings control how and when various Forums operations take place.
Before you begin
To run administrative commands, you must use the wsadmin client. For more information, see Starting the wsadmin client.
About this task
Procedure
To change Forums configuration settings, complete the
following steps.
- Start the wsadmin client from the following
directory on the system where you installed the Deployment Manager:
where 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 else subsequent commands that you enter might fail.
- Start the Forums Jython script interpreter.
- Optional: To view a list of the valid Forums
configuration settings and their current values, use the following
command:
ForumsConfigService.showConfig()
- To change a Forums configuration setting, use the following
command:
ForumsConfigService.updateConfig("property", "value")
where property is one of the editable Forums configuration properties and value is the new value of the property. For a complete list of editable properties, see Forums configuration properties.For example:
ForumsConfigService.updateConfig("task.TrashAutoPurgeJob.trashRetentionInDays", "120")
- Optional: After you update the Forums properties with new values, use the ForumsConfigService.showConfig() command to display the list of properties and their updated values.
- Optional: Repeat step 3 for each property that you want to change.