Came across this article and thought would share in my blog.....
On OHS Server, add the following attributes to the mod_wl_ohs.config file. The WLIOTimeoutSecs setting to 6000 will allow a server process to run for 100 minutes without a timeout error in the browser. The complete description of these settings can be found here: http://docs.oracle.com/cd/E14571_01/web.1111/e16435/plugin_params.htm
Steps:
- On the EPM Foundation Web server go to folder
\Oracle\Middleware\user_projects\epmsystem1\httpConfig\ohs\config\OHS\ohs_component - Take a back up of mod_wl_ohs.conf
- Open mod_wl_ohs.conf. Locate the below section in the file:
<LocationMatch ^/hfmadf>By default there are no timeout settings defined here.
SetHandler weblogic-handler
WeblogicCluster <cluster>:<port>
</LocationMatch> - Add the below 3 lines inside LocationMatch tag:
WLIOTimeoutSecs 6000
Idempotent OFF
WLSocketTimeoutSecs 750 - After adding the above lines the section will look like this:
<LocationMatch ^/hfmadf>
SetHandler weblogic-handler
WeblogicCluster <cluster>:<port>
WLIOTimeoutSecs 6000
Idempotent OFF
WLSocketTimeoutSecs 750
</LocationMatch> - Save the changes
- Restart the OHS service (OracleProcessManager_ohsInstance)
- The above settings will allow the users to perform any HFM tasks that takes more that 5 minutes without any timeout errors.
No comments:
Post a Comment