Configure PAS for OpenEdge instances for proxy load balancing
- Last Updated: August 18, 2021
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
To configure PAS for OpenEdge instances for proxy load balancing, verify that chunking and HTTP sessions are enabled. These properties are enabled by default for the SOAP, REST, and WEB transports. See Use HTTP sessions for instructions on how to enable chunking and HTTP sessions for the APSV transport.
If you are not enabling sticky sessions on the Apache server, you must
configure the Apache server for session-free load balancing in which subsequent requests
do not return to the same instance. Perform the following steps:
- Enable
Clusterproperty in the /conf/server.xml file for each instance. You can use thefeatureaction of the PASMAN command-line utility to set this property. For example:pasman.[sh|bat] -I instance-name feature Cluster=on - Set the
jvmRoutealias to blank. ThejvmRoutealias is controlled by thepsc.as.aliasvalue and can be set to blank with PASMAN (rather than by manually editing /conf/server.xml). For example:pasman.[sh|bat] config psc.as.alias=Note: ThejvmRoutealias translates to the route value in thehttp.conffile of the Apache server. See Configure the Apache server for proxy load balancing for more information. - Open the instance-name/conf/context.xml file in each
instance and comment out the
Managersection. For example:<!-- <Manager maxActiveSessions="-1" pathname="" processExpiresFrequency="6" maxInactiveInterval="${psc.as.session.timeout}" sessionIdLength="22" > </Manager> -->