| Summary: | Missing JCR configuration for cluster support | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Portal Platform 5 | Reporter: | Thomas Heute <theute> |
| Component: | Portal | Assignee: | Nobody <nobody> |
| Status: | VERIFIED --- | QA Contact: | |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 5.2.0.GA | CC: | epp-bugs, theute |
| Target Milestone: | --- | Flags: | jmorgan:
needinfo?
(hfnukal) |
| Target Release: | 5.2.1.ER02 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | Type: | --- | |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
Honza Fnukal <hfnukal> updated the status of jira GTNPORTAL-2372 to Resolved |
a required component is missing in the jcr config of GateIn 3.2 and EPP 5.2 which is the RPCService that is used by the JCR in cluster environment to allow cluster nodes to communicate. See below an example of how to configure it: <component profiles="cluster"> <key>org.exoplatform.services.rpc.RPCService</key> <type>org.exoplatform.services.rpc.impl.RPCServiceImpl</type> <init-params> <value-param> <name>jgroups-configuration</name> <value>${gatein.jcr.jgroups.config}</value> </value-param> <value-param> <name>jgroups-cluster-name</name> <value>RPCService-Cluster</value> </value-param> <value-param> <name>jgroups-default-timeout</name> <value>0</value> </value-param> </init-params> </component> This should be added in gatein.ear/02portal.war/WEB-INF/conf/jcr/jcr-configuration.xml. More details about it here http://docs.jboss.org/exojcr/1.14.6-GA/developer/en-US/html_single/#Kernel.RPCService.