The PowerChute user interface has a ten minute session timeout by default. Following ten minutes of inactivity, the session will be terminated and the login screen will display to enter the username and password. It is possible to increase or decrease the duration of the session timeout by editing the Web.xml file.
To change the session timeout duration:
\group1\comp\http\html\WEB-INF\web.xml
Open the Web.xml file with a text editor.
Locate the the <session-config> element, e.g:
<session-config>
<session-timeout>10</session-timeout>
</session-config>
The duration value in the <session-timeout> element can be changed. For example to change the timeout to 15 minutes, change the <session-timeout> value to 15, e.g.:
<session-config>
<session-timeout>15</session-timeout>
</session-config>
Save the Web.xml file.
Start the PowerChute service.
The PowerChute UI will now timeout following a period of inactivity that corresponds to the new <session-timeout> value.