[
https://issues.jboss.org/browse/WFLY-9877?page=com.atlassian.jira.plugin....
]
Petr Kremensky commented on WFLY-9877:
--------------------------------------
I'll increasing the priority here as this would be a blocker for EAP and afaik
we're not suppose to create JBEAP jiras for such an issues anymore.
{noformat}
#
https://access.qa.redhat.com/documentation/en-us/red_hat_jboss_enterprise...
WORKSPACE=`pwd`
CONFIG=standalone-full-ha.xml
unzip -q jboss-eap-6.4.19-full-build.zip
cp -r ${WILDFLY}/dist/target/wildfly-13.0.0.Alpha1-SNAPSHOT .
EAP6_HOME=${WORKSPACE}/jboss-eap-6.4
EAP7_HOME=${WORKSPACE}/wildfly-13.0.0.Alpha1-SNAPSHOT
cp ${EAP6_HOME}/standalone/configuration/${CONFIG} ${EAP7_HOME}/standalone/configuration
${EAP7_HOME}/bin/standalone.sh -c ${CONFIG} --start-mode=admin-only &
${EAP7_HOME}/bin/jboss-cli.sh --connect --controller=remote://localhost:9999
/subsystem=jacorb:migrate
/subsystem=messaging:migrate
/subsystem=web:migrate
/subsystem=cmp:remove
/extension=org.jboss.as.cmp:remove
/subsystem=jaxr:remove
/extension=org.jboss.as.jaxr:remove
/subsystem=threads:remove
/extension=org.jboss.as.threads:remove
reload
...
09:06:58,771 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread
Pool -- 27) WFLYCTL0013: Operation ("add") failed - address: ([
("subsystem" => "jgroups"),
("channel" => "ee-singleton")
]) - failure description: "WFLYCLJG0016: Unable to load protocol class
org.jgroups.protocols.pbcast.NAKACK"
09:06:58,772 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread)
"WFLYCTL0193: Failed executing subsystem jgroups boot operations"
09:06:58,773 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread)
WFLYCTL0013: Operation ("parallel-subsystem-boot") failed - address: ([]) -
failure description: "\"WFLYCTL0193: Failed executing subsystem jgroups boot
operations\""
09:06:58,776 FATAL [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0056: Server boot
has failed in an unrecoverable manner; exiting. See previous messages for details.
This works with non-ha profiles.
{noformat}
fyi: [~kabirkhan], [~jamezp]
NAKACK, UNICAST2 and MERGE2 need to translate to their newer
variants
---------------------------------------------------------------------
Key: WFLY-9877
URL:
https://issues.jboss.org/browse/WFLY-9877
Project: WildFly
Issue Type: Bug
Components: Clustering
Affects Versions: 12.0.0.Beta1
Reporter: Richard JanÃk
Assignee: Paul Ferraro
This is only an issue for EAP, which has different versions than WFLY, for that reason,
all the versions mentioned here are EAP ones.
After some discussion with people who test migrations, we found that these protocols that
were deprecated in JGroups 3.6.x present in 7.1.0 and were removed in JGroups 4.0.10
present in 7.2.0 should be brought back in some form:
{noformat}
NAKACK --> NAKACK2
UNICAST2 --> UNICAST3
MERGE2 --> MERGE3
{noformat}
These are not in the default 7.0 or 7.1 configuration, so why do we need to translate
these like we do it for NAKACK2? Because these protocols can be expected to be present in
the 7.1 configuration due to migration from 6.x, where they are by default. Since, after
migration from 6.x, these will work with the 7.1 configuration, and since there is a
reason to expect them being used even if they are deprecated, we should not just silently
remove these protocols with the JGroups upgrade that is in 7.2 - the configuration file
from 7.1 should always work with 7.2.
Cc [~msvehla] [~pkremens]
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)