Translate

Total Pageviews

My YouTube Channel

Sunday 26 February 2017

Session Timeout Setting in vRA 7.x

Configure the session timeout setting on the vRealize Automation appliance in accordance with your company security policy.
The vRealize Automation appliance default session timeout on user inactivity is 30 minutes. To adjust this time out value to conform to your organization's security policy, edit the web.xml file on your vRealize Automation appliance host machine.
1
Open the/usr/lib/vcac/server/webapps/vcac/WEB-INF/web.xml file in a text editor.
2
Find session-config and set the session-timeout value. See the following code sample.
<!-- 30 minutes session expiration time -->
  <session-config>
      <session-timeout>30</session-timeout>
      <tracking-mode>COOKIE</tracking-mode>
      <cookie-config>
          <path>/</path>
      </cookie-config>
  </session-config>
3
Restart the Apache server by running the following commands.
/etc/init.d/apache2 stop
/etc/init.d/apache2 start

No comments:

Post a Comment