Configure PAS for OpenEdge instances for proxy load balancing
- Last Updated: September 9, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- 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 about how to enable chunking and HTTP sessions for the APSV transport.
If you are not enabling sticky sessions on the Apache server, then you must
configure the Apache server for session-free load balancing in which subsequent requests
do not return to the same instance:
- 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 -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 config psc.as.alias=Note: ThejvmRoutealias translates to the route value in thehttp.conffile of the Apache server. For more information, see Configure Apache for proxy load balancing. - 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> -->