Disable Tomcat Session Persistence
By default, Tomcat is configured to persist sessions across restarts of the Tomcat server. You are recommended to disable this feature before using SuperWEB2 in production.
To make this change:
- Open <tomcat_home>\conf\context.xml in a text editor.
Locate the following section:
XML<!-- Uncomment this to disable session persistence across Tomcat restarts --> <!-- <Manager pathname="" /> -->
Remove the comments:
XML<!-- Uncomment this to disable session persistence across Tomcat restarts --> <Manager pathname="" />
- Restart Tomcat or the SuperWEB2 service.