
|
If you were logged in you would be able to see more operations.
|
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
Issue Links:
|
Related
|
|
This issue related:
|
|
SOA-136
Need to check that IR6 Linux service ...
|
|
|
|
|
|
|
| Affects: |
Release Notes
|
| Workaround: |
Workaround Exists
|
| Workaround Description: |
Comment the line of the init script that reads "JBOSS_UDP_PORT=${JBOSS_UDP_PORT:-"45566"}", or remove all of the lines specified in the description of this JIRA issue.
|
| Complexity: |
Low
|
| Help Desk Ticket Reference: |
https://na1.salesforce.com/50030000003kVZq
|
|
The 'jbossas' init script installed by the EAP RPM incorrectly sets the jboss.partition.udpPort system property which overrides the XML settings in the various JGroups protocol stack configurations. It also rendors the other JGroups UDP port properties that are being set useless.
The effect of this incorrect configuration is that all four cluster channels that exist in EAP 4.2 will see each other and complain about this repeatedly.
To fix this, all references to the jboss.partition.udpPort system property need to be removed from this file. Specifically, lines 70 and 71:
#define the jgroups UDP port (multicast) for clustering
JBOSS_UDP_PORT=${JBOSS_UDP_PORT:-"45566"}
and lines 153 and 154:
[ "x$JBOSS_UDP_PORT" != "x" ] && \
JAVA_OPTS="$JAVA_OPTS -Djboss.partition.udpPort=$JBOSS_UDP_PORT"
Line numbers may vary based on the specific init file because of manual edits and/or environment differences, but the line text should be the same.
|
|
Description
|
The 'jbossas' init script installed by the EAP RPM incorrectly sets the jboss.partition.udpPort system property which overrides the XML settings in the various JGroups protocol stack configurations. It also rendors the other JGroups UDP port properties that are being set useless.
The effect of this incorrect configuration is that all four cluster channels that exist in EAP 4.2 will see each other and complain about this repeatedly.
To fix this, all references to the jboss.partition.udpPort system property need to be removed from this file. Specifically, lines 70 and 71:
#define the jgroups UDP port (multicast) for clustering
JBOSS_UDP_PORT=${JBOSS_UDP_PORT:-"45566"}
and lines 153 and 154:
[ "x$JBOSS_UDP_PORT" != "x" ] && \
JAVA_OPTS="$JAVA_OPTS -Djboss.partition.udpPort=$JBOSS_UDP_PORT"
Line numbers may vary based on the specific init file because of manual edits and/or environment differences, but the line text should be the same. |
Show » |
|
|