Configuring session inactivity timeout for OpenPages application servers

You can set session inactivity timeout values for OpenPages application servers. The default timeout value is INVALIDATION_TIMEOUT = 90 minutes.

Procedure

  1. Log in to your Red Hat® OpenShift® cluster as an instance administrator:
    oc login OpenShift_URL:port
  2. Run the following command to modify the timeout value in the ConfigMap:
    oc patch configmap op-{serviceInstanceId}-product-settings -n ${PROJECT_CPD_INST_OPERANDS}
    --type=merge -p '{"data":{"INVALIDATION_TIMEOUT":"<new_value>"}}'
    • Replace {serviceInstanceId} with the value from the OpenPages instance CR.
    • Replace <new_value> with your desired timeout value, for example 90m.
  3. After updating the ConfigMap, restart the application pods to apply the changes:
    oc rollout restart statefulset openpages-{instance-name}-sts -n ${PROJECT_CPD_INST_OPERANDS}

    Replace {instance-name} with the value from the OpenPages instance CR.