I have a two-node cluster running SAP Business Objects 4.3 on AWS EC2. I have an Aurora database backend to hold the metadata, that appears to be properly connected.
Following the documentation on Tomcat 9, I have tried to implement what they have suggested is the "simplest" cluster configuration :
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
Adding (or rather uncommenting that line) in the server.xml file located in this directory: /opt/bo/sap_bobj/tomcat/conf
Likewise, the instructions indicate to add the line:
<distributable/>
To the appropriate place in /opt/bo/sap_bobj/enterprise_xi40/warfiles/webapps/BOE/WEB-INF/web.xml.
Stopping and restarting Tomcat yields a clean catalina.out file and a successful startup, but sessions don't seem to persist.
Is there any more to the setup for session persistence across nodes?
EDIT: If one of my Tomcat servers is down but I can still access the SAP portal, does that qualify as a successful configuration?