How do I increase the login session on Liberty?
![]()
We recently upgrade to CLM 6.0.1 and are now using Liberty as our application server.
Users are finding that they need to log in again to the web UI several times in the day.
How do I increase the session time?
|
One answer
![]()
The timeout can be increased by setting ltpa timeout in the server.xml (example path: C:\IBM\RTC601\server\liberty\servers\clm\server.xml )
By default, it is not included and falls to default timeout of 90 minutes.
To increase this to, as an example, 8 hours, add the tag:
<ltpa expiration="480" />
For more information about this tag, and others, in the Liberty server.xml, see:
https://www-01.ibm.com/support/knowledgecenter/SSEQTJ_8.5.5/com.ibm.websphere.wlp.doc/autodita/rwlp_metatype_4ic.html
|