[JBoss JIRA] (WFLY-9854) jgroups-channel cannot use name which is already used by jgroups/stacks
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-9854?page=com.atlassian.jira.plugin.... ]
Paul Ferraro commented on WFLY-9854:
------------------------------------
[~mnovak] Correct.
> jgroups-channel cannot use name which is already used by jgroups/stacks
> -----------------------------------------------------------------------
>
> Key: WFLY-9854
> URL: https://issues.jboss.org/browse/WFLY-9854
> Project: WildFly
> Issue Type: Bug
> Components: Clustering, JMS
> Affects Versions: 12.0.0.Beta1
> Reporter: Erich Duda
> Assignee: Paul Ferraro
> Priority: Blocker
>
> The configuration \[1\] results to an error \[2\]. This is backward compatibility issue since the configuration works with previous releases of Wildfly.
> \[1\]
> {code:xml}
> <broadcast-group name="bg-group1" jgroups-stack="udp" jgroups-channel="udp" broadcast-period="2000" connectors="connector"/>
> {code}
> \[2\]
> {code}
> 10:52:29,982 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 15) WFLYCTL0013: Operation ("add") failed - address: ([
> ("subsystem" => "jgroups"),
> ("channel" => "udp")
> ]) - failure description: "WFLYCTL0436: Cannot register capability 'org.wildfly.clustering.jgroups.channel-factory.udp' at location '[
> (\"subsystem\" => \"jgroups\"),
> (\"channel\" => \"udp\")
> ]' as it is already registered in context 'global' at location(s) '[[
> (\"subsystem\" => \"jgroups\"),
> (\"stack\" => \"udp\")
> ]]'"
> {code}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (WFLY-10044) enable_bundling property causes boot to fail
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-10044?page=com.atlassian.jira.plugin... ]
Paul Ferraro commented on WFLY-10044:
-------------------------------------
[~mnovak] Perhaps there is an implied question here, i.e. how to disable bundling in WF12?
Use this:
{noformat}<property name="bundler_type">no-bundler</property>{noformat}
You shouldn't need to do this, however, as the default bundler (i.e. transfer-queue) does not hinder outgoing traffic.
> enable_bundling property causes boot to fail
> --------------------------------------------
>
> Key: WFLY-10044
> URL: https://issues.jboss.org/browse/WFLY-10044
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 12.0.0.Final
> Reporter: Miroslav Novak
> Assignee: Paul Ferraro
> Priority: Critical
>
> When configuring JGroups udp stack then it no longer takes property {{enable_bundling}}:
> {code}
> <stack name="udp">
> <transport type="UDP" shared="false" socket-binding="jgroups-udp">
> <property name="enable_bundling">
> false
> </property>
> </transport>
> <protocol type="PING"/>
> <protocol type="MERGE3"/>
> <protocol type="FD_SOCK"/>
> <protocol type="FD_ALL"/>
> <protocol type="VERIFY_SUSPECT"/>
> <protocol type="pbcast.NAKACK2"/>
> <protocol type="UNICAST3"/>
> <protocol type="pbcast.STABLE"/>
> <protocol type="pbcast.GMS"/>
> <protocol type="UFC"/>
> <protocol type="MFC"/>
> <protocol type="FRAG3"/>
> <protocol type="TUNNEL">
> <property name="gossip_router_hosts">
> 0.0.0.0[12001]
> </property>
> </protocol>
> </stack>
> {code}
> If it's used then server does not boot and logs error:
> {code}
> 10:15:24,324 ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool -- 74) MSC000001: Failed to start service org.wildfly.clustering.jgroups.channel.activemq-cluster: org.jboss.msc.service.StartException in service org.wildfly.clustering.jgroups.channel.activemq-cluster: java.lang.IllegalArgumentException: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:103)
> at org.wildfly.clustering.service.AsynchronousServiceBuilder.lambda$start$0(AsynchronousServiceBuilder.java:99) [wildfly-clustering-service-12.0.0.Final.jar:12.0.0.Final]
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_131]
> at org.jboss.threads.JBossThread.run(JBossThread.java:485) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> Caused by: java.lang.IllegalArgumentException: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.createProtocol(AbstractProtocolConfigurationBuilder.java:119)
> at org.jboss.as.clustering.jgroups.JChannelFactory.createChannel(JChannelFactory.java:102)
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:101)
> ... 7 more
> Caused by: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.wildfly.security.manager.WildFlySecurityManager.doUnchecked(WildFlySecurityManager.java:852) [wildfly-elytron-1.2.2.Final.jar:1.2.2.Final]
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.createProtocol(AbstractProtocolConfigurationBuilder.java:114)
> ... 9 more
> Caused by: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jgroups.stack.Protocol.setProperties(Protocol.java:144)
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.lambda$createProtocol$0(AbstractProtocolConfigurationBuilder.java:108)
> at org.wildfly.security.manager.WildFlySecurityManager.doUnchecked(WildFlySecurityManager.java:850) [wildfly-elytron-1.2.2.Final.jar:1.2.2.Final]
> ... 10 more
> {code}
> This is change and backward compatibility issue against EAP 7.1/WF11.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (WFLY-10044) enable_bundling property causes boot to fail
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-10044?page=com.atlassian.jira.plugin... ]
Paul Ferraro commented on WFLY-10044:
-------------------------------------
{quote}Was this deprecation documented in EAP/WF doc{quote}
JGroups protocol properties are not formal model attributes, thus do not appear in the documentation (nor would it be feasible to do so).
{quote}did EAP/WF log warning when it was configured this way{quote}
WF would have logged a warning for this property ever since AS 7.2. It is entirely acceptable for deprecated properties to be dropped across major releases, of which there have been 4 community and 1 product since the property was deprecated.
> enable_bundling property causes boot to fail
> --------------------------------------------
>
> Key: WFLY-10044
> URL: https://issues.jboss.org/browse/WFLY-10044
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 12.0.0.Final
> Reporter: Miroslav Novak
> Assignee: Paul Ferraro
> Priority: Critical
>
> When configuring JGroups udp stack then it no longer takes property {{enable_bundling}}:
> {code}
> <stack name="udp">
> <transport type="UDP" shared="false" socket-binding="jgroups-udp">
> <property name="enable_bundling">
> false
> </property>
> </transport>
> <protocol type="PING"/>
> <protocol type="MERGE3"/>
> <protocol type="FD_SOCK"/>
> <protocol type="FD_ALL"/>
> <protocol type="VERIFY_SUSPECT"/>
> <protocol type="pbcast.NAKACK2"/>
> <protocol type="UNICAST3"/>
> <protocol type="pbcast.STABLE"/>
> <protocol type="pbcast.GMS"/>
> <protocol type="UFC"/>
> <protocol type="MFC"/>
> <protocol type="FRAG3"/>
> <protocol type="TUNNEL">
> <property name="gossip_router_hosts">
> 0.0.0.0[12001]
> </property>
> </protocol>
> </stack>
> {code}
> If it's used then server does not boot and logs error:
> {code}
> 10:15:24,324 ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool -- 74) MSC000001: Failed to start service org.wildfly.clustering.jgroups.channel.activemq-cluster: org.jboss.msc.service.StartException in service org.wildfly.clustering.jgroups.channel.activemq-cluster: java.lang.IllegalArgumentException: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:103)
> at org.wildfly.clustering.service.AsynchronousServiceBuilder.lambda$start$0(AsynchronousServiceBuilder.java:99) [wildfly-clustering-service-12.0.0.Final.jar:12.0.0.Final]
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_131]
> at org.jboss.threads.JBossThread.run(JBossThread.java:485) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> Caused by: java.lang.IllegalArgumentException: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.createProtocol(AbstractProtocolConfigurationBuilder.java:119)
> at org.jboss.as.clustering.jgroups.JChannelFactory.createChannel(JChannelFactory.java:102)
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:101)
> ... 7 more
> Caused by: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.wildfly.security.manager.WildFlySecurityManager.doUnchecked(WildFlySecurityManager.java:852) [wildfly-elytron-1.2.2.Final.jar:1.2.2.Final]
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.createProtocol(AbstractProtocolConfigurationBuilder.java:114)
> ... 9 more
> Caused by: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jgroups.stack.Protocol.setProperties(Protocol.java:144)
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.lambda$createProtocol$0(AbstractProtocolConfigurationBuilder.java:108)
> at org.wildfly.security.manager.WildFlySecurityManager.doUnchecked(WildFlySecurityManager.java:850) [wildfly-elytron-1.2.2.Final.jar:1.2.2.Final]
> ... 10 more
> {code}
> This is change and backward compatibility issue against EAP 7.1/WF11.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (WFLY-10039) Backward-compatibility issues with eviction configuration between EAP 6 and 7
by Petr Kremensky (JIRA)
[ https://issues.jboss.org/browse/WFLY-10039?page=com.atlassian.jira.plugin... ]
Petr Kremensky commented on WFLY-10039:
---------------------------------------
[~pferraro] Yes, the default was used.
Node: the only difference between 6.4.0 and 6.4.19 is domain model version, otherwise these are same as well.
{code:diff}
$ diff ${EAP_6_4_0}/standalone/configuration/standalone-full-ha.xml ${EAP_6_4_19}/standalone/configuration/standalone-full-ha.xml
< <server xmlns="urn:jboss:domain:1.7">
---
> <server xmlns="urn:jboss:domain:1.8">
{code}
> Backward-compatibility issues with eviction configuration between EAP 6 and 7
> -----------------------------------------------------------------------------
>
> Key: WFLY-10039
> URL: https://issues.jboss.org/browse/WFLY-10039
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Reporter: Petr Kremensky
> Assignee: Paul Ferraro
> Priority: Blocker
>
> Deploying jboss-kitchensink quickstart on server using migrated configuration from EAP 6.4 fails with
> {noformat}
> 12:21:17,131 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service org.wildfly.clustering.infinispan.cache-configuration.ejb.client-mappings: org.jboss.msc.service.StartException in service org.wildfly.clustering.infinispan.cache-configuration.ejb.client-mappings: Failed to start service
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1706)
> at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1540)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: org.infinispan.commons.CacheConfigurationException: ISPN000424: Eviction size value cannot be less than or equal to zero if eviction is enabled
> at org.infinispan.configuration.cache.MemoryConfigurationBuilder.validate(MemoryConfigurationBuilder.java:185)
> at org.infinispan.configuration.cache.ConfigurationBuilder.validate(ConfigurationBuilder.java:233)
> at org.infinispan.configuration.cache.ConfigurationBuilder.build(ConfigurationBuilder.java:290)
> at org.infinispan.configuration.cache.ConfigurationBuilder.build(ConfigurationBuilder.java:280)
> at org.wildfly.clustering.infinispan.spi.service.ConfigurationBuilder.start(ConfigurationBuilder.java:88)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1714)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1693)
> ... 6 more
> {noformat}
> *Introduced by:*
> https://issues.jboss.org/browse/WFLY-9344 - Let Infinispan manage eviction for distributed web sessions and @Stateful EJBs
> https://github.com/wildfly/wildfly/pull/10986
> *Steps to reproduce:*
> {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
> EAP6_HOME=${WORKSPACE}/jboss-eap-6.4
> # workaround https://issues.jboss.org/browse/WFLY-9877
> pushd ${EAP6_HOME}/standalone/configuration/
> grep -lr 'NAKACK' . | xargs sed -i 's/NAKACK/NAKACK2/g'
> grep -lr 'UNICAST2' . | xargs sed -i 's/UNICAST2/UNICAST3/g'
> grep -lr 'MERGE2' . | xargs sed -i 's/MERGE2/MERGE3/g'
> popd
> cp -r ${WILDFLY}/dist/target/wildfly-13.0.0.Alpha1-SNAPSHOT .
> 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
> /subsystem=logging/pattern-formatter=COLOR-PATTERN:add(pattern="%K{level}%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%e%n")
> /subsystem=logging/console-handler=CONSOLE:add(level=INFO, named-formatter=COLOR-PATTERN)
> /subsystem=logging/root-logger=ROOT:add-handler(name=CONSOLE)
> reload
> deploy jboss-kitchensink.war
> {noformat}
> *server side log*
> {noformat}
> 12:21:17,131 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service org.wildfly.clustering.infinispan.cache-configuration.ejb.client-mappings: org.jboss.msc.service.StartException in service org.wildfly.clustering.infinispan.cache-configuration.ejb.client-mappings: Failed to start service
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1706)
> at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1540)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: org.infinispan.commons.CacheConfigurationException: ISPN000424: Eviction size value cannot be less than or equal to zero if eviction is enabled
> at org.infinispan.configuration.cache.MemoryConfigurationBuilder.validate(MemoryConfigurationBuilder.java:185)
> at org.infinispan.configuration.cache.ConfigurationBuilder.validate(ConfigurationBuilder.java:233)
> at org.infinispan.configuration.cache.ConfigurationBuilder.build(ConfigurationBuilder.java:290)
> at org.infinispan.configuration.cache.ConfigurationBuilder.build(ConfigurationBuilder.java:280)
> at org.wildfly.clustering.infinispan.spi.service.ConfigurationBuilder.start(ConfigurationBuilder.java:88)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1714)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1693)
> ... 6 more
> 12:21:17,137 ERROR [org.jboss.as.controller.management-operation] (management-handler-thread - 1) WFLYCTL0013: Operation ("deploy") failed - address: ({"deployment" => "jboss-kitchensink.war"}) - failure description: {
> "WFLYCTL0412: Required services that are not installed:" => [
> "jboss.ejb.association",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START",
> "jboss.undertow.deployment.default-server.default-host./jboss-kitchensink",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START",
> "jboss.deployment.discovery.\"jboss-kitchensink.war\"",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START"
> ],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => [
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".WeldEndInitService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service is missing [jboss.deployment.discovery.\"jboss-kitchensink.war\"]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.discovery.\"jboss-kitchensink.war\" is missing [jboss.ejb.association]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".deploymentCompleteService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.undertow.deployment.default-server.default-host./jboss-kitchensink, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.undertow.deployment.default-server.default-host./jboss-kitchensink is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".moduleDeploymentRuntimeInformationStart is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START]"
> ]
> }
> 12:21:17,141 ERROR [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0021: Deploy of deployment "jboss-kitchensink.war" was rolled back with the following failure message:
> {
> "WFLYCTL0412: Required services that are not installed:" => [
> "jboss.ejb.association",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START",
> "jboss.undertow.deployment.default-server.default-host./jboss-kitchensink",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START",
> "jboss.deployment.discovery.\"jboss-kitchensink.war\"",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START"
> ],
> "WFLYCTL0180: Services with missing/unavailable dependencies" => [
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".WeldEndInitService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service is missing [jboss.deployment.discovery.\"jboss-kitchensink.war\"]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.discovery.\"jboss-kitchensink.war\" is missing [jboss.ejb.association]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".deploymentCompleteService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.undertow.deployment.default-server.default-host./jboss-kitchensink, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]",
> "jboss.undertow.deployment.default-server.default-host./jboss-kitchensink is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]",
> "jboss.deployment.unit.\"jboss-kitchensink.war\".moduleDeploymentRuntimeInformationStart is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START]"
> ]
> }
> {noformat}
> *client side log*
> {noformat}
> {"WFLYCTL0062: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"WFLYCTL0412: Required services that are not installed:" => ["jboss.ejb.association","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START","jboss.undertow.deployment.default-server.default-host./jboss-kitchensink","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START","jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service","jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START","jboss.deployment.discovery.\"jboss-kitchensink.war\"","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START"],"WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.unit.\"jboss-kitchensink.war\".WeldEndInitService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service is missing [jboss.deployment.discovery.\"jboss-kitchensink.war\"]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.discovery.\"jboss-kitchensink.war\" is missing [jboss.ejb.association]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.unit.\"jboss-kitchensink.war\".deploymentCompleteService is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.undertow.deployment.default-server.default-host./jboss-kitchensink, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".ejb3.client-context.registration-service]","jboss.undertow.deployment.default-server.default-host./jboss-kitchensink is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.faces.webapp.FacetTag\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldInitialListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"com.sun.faces.config.ConfigureListener\".START, jboss.deployment.unit.\"jboss-kitchensink.war\".component.\"org.jboss.weld.module.web.servlet.WeldTerminalListener\".START]","jboss.deployment.unit.\"jboss-kitchensink.war\".moduleDeploymentRuntimeInformationStart is missing [jboss.deployment.unit.\"jboss-kitchensink.war\".component.MemberRegistration.START]"]}}}
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (WFLY-9377) Reloading fails with BindException when TUNNEL protocol is configured with socket-binding
by Radoslav Husar (JIRA)
[ https://issues.jboss.org/browse/WFLY-9377?page=com.atlassian.jira.plugin.... ]
Radoslav Husar resolved WFLY-9377.
----------------------------------
Fix Version/s: 12.0.0.Final
Resolution: Done
Fixed a while ago, resolving for WF 12.
> Reloading fails with BindException when TUNNEL protocol is configured with socket-binding
> -----------------------------------------------------------------------------------------
>
> Key: WFLY-9377
> URL: https://issues.jboss.org/browse/WFLY-9377
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 11.0.0.CR1
> Reporter: Radoslav Husar
> Assignee: Radoslav Husar
> Fix For: 12.0.0.Final
>
>
> {noformat}
> 15:58:16,189 ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool – 68) MSC000001: Failed to start service org.wildfly.clustering.jgroups.channel.ee: org.jboss.msc.service.StartException in service org.wildfly.clustering.jgroups.channel.ee: java.net.BindException: Address already in use (Bind failed)
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:104)
> at org.wildfly.clustering.service.AsynchronousServiceBuilder.lambda$start$0(AsynchronousServiceBuilder.java:99)
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
> at java.lang.Thread.run(Thread.java:748)
> at org.jboss.threads.JBossThread.run(JBossThread.java:320)
> Caused by: java.net.BindException: Address already in use (Bind failed)
> at java.net.PlainDatagramSocketImpl.bind0(Native Method)
> at java.net.AbstractPlainDatagramSocketImpl.bind(AbstractPlainDatagramSocketImpl.java:93)
> at java.net.DatagramSocket.bind(DatagramSocket.java:392)
> at java.net.DatagramSocket.<init>(DatagramSocket.java:242)
> at java.net.DatagramSocket.<init>(DatagramSocket.java:299)
> at org.jgroups.util.DefaultSocketFactory.createDatagramSocket(DefaultSocketFactory.java:62)
> at org.jgroups.protocols.TUNNEL.init(TUNNEL.java:142)
> at org.jgroups.stack.ProtocolStack.initProtocolStack(ProtocolStack.java:861)
> at org.jgroups.stack.ProtocolStack.init(ProtocolStack.java:831)
> at org.jboss.as.clustering.jgroups.JChannelFactory.createChannel(JChannelFactory.java:108)
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:102)
> ... 5 more
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (WFLY-10044) enable_bundling property causes boot to fail
by Radoslav Husar (JIRA)
[ https://issues.jboss.org/browse/WFLY-10044?page=com.atlassian.jira.plugin... ]
Radoslav Husar commented on WFLY-10044:
---------------------------------------
{quote}Was this deprecation documented in EAP/WF doc and did EAP/WF log warning when it was configured this way?{quote}
Yes. See the logs.
{noformat}
16:57:25,008 WARN [org.jgroups.stack.Configurator] (ServerService Thread Pool -- 66) JGRP000014: TP.enable_bundling has been deprecated: will be ignored as bundling is on by default
{noformat}
{quote} The same backward compatibility requirements are for WF11/12.{quote}
Deprecated features can be removed in future releases. That's why there are deprecation warnings. Moreover, this is not our default config.
> enable_bundling property causes boot to fail
> --------------------------------------------
>
> Key: WFLY-10044
> URL: https://issues.jboss.org/browse/WFLY-10044
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 12.0.0.Final
> Reporter: Miroslav Novak
> Assignee: Paul Ferraro
> Priority: Critical
>
> When configuring JGroups udp stack then it no longer takes property {{enable_bundling}}:
> {code}
> <stack name="udp">
> <transport type="UDP" shared="false" socket-binding="jgroups-udp">
> <property name="enable_bundling">
> false
> </property>
> </transport>
> <protocol type="PING"/>
> <protocol type="MERGE3"/>
> <protocol type="FD_SOCK"/>
> <protocol type="FD_ALL"/>
> <protocol type="VERIFY_SUSPECT"/>
> <protocol type="pbcast.NAKACK2"/>
> <protocol type="UNICAST3"/>
> <protocol type="pbcast.STABLE"/>
> <protocol type="pbcast.GMS"/>
> <protocol type="UFC"/>
> <protocol type="MFC"/>
> <protocol type="FRAG3"/>
> <protocol type="TUNNEL">
> <property name="gossip_router_hosts">
> 0.0.0.0[12001]
> </property>
> </protocol>
> </stack>
> {code}
> If it's used then server does not boot and logs error:
> {code}
> 10:15:24,324 ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool -- 74) MSC000001: Failed to start service org.wildfly.clustering.jgroups.channel.activemq-cluster: org.jboss.msc.service.StartException in service org.wildfly.clustering.jgroups.channel.activemq-cluster: java.lang.IllegalArgumentException: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:103)
> at org.wildfly.clustering.service.AsynchronousServiceBuilder.lambda$start$0(AsynchronousServiceBuilder.java:99) [wildfly-clustering-service-12.0.0.Final.jar:12.0.0.Final]
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1378) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_131]
> at org.jboss.threads.JBossThread.run(JBossThread.java:485) [jboss-threads-2.3.1.Final.jar:2.3.1.Final]
> Caused by: java.lang.IllegalArgumentException: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.createProtocol(AbstractProtocolConfigurationBuilder.java:119)
> at org.jboss.as.clustering.jgroups.JChannelFactory.createChannel(JChannelFactory.java:102)
> at org.jboss.as.clustering.jgroups.subsystem.ChannelBuilder.start(ChannelBuilder.java:101)
> ... 7 more
> Caused by: java.security.PrivilegedActionException: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.wildfly.security.manager.WildFlySecurityManager.doUnchecked(WildFlySecurityManager.java:852) [wildfly-elytron-1.2.2.Final.jar:1.2.2.Final]
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.createProtocol(AbstractProtocolConfigurationBuilder.java:114)
> ... 9 more
> Caused by: java.lang.IllegalArgumentException: Unrecognized UDP properties: [enable_bundling]
> at org.jgroups.stack.Protocol.setProperties(Protocol.java:144)
> at org.jboss.as.clustering.jgroups.subsystem.AbstractProtocolConfigurationBuilder.lambda$createProtocol$0(AbstractProtocolConfigurationBuilder.java:108)
> at org.wildfly.security.manager.WildFlySecurityManager.doUnchecked(WildFlySecurityManager.java:850) [wildfly-elytron-1.2.2.Final.jar:1.2.2.Final]
> ... 10 more
> {code}
> This is change and backward compatibility issue against EAP 7.1/WF11.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month
[JBoss JIRA] (WFLY-10046) Cannot create cluster with JGroups Gossip router
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-10046?page=com.atlassian.jira.plugin... ]
Paul Ferraro closed WFLY-10046.
-------------------------------
Resolution: Rejected
[~mnovak] This protocol stack configuration doesn't make any sense. TUNNEL is a transport, and thus ought to *replace* UDP in the protocol stack. Placing it at the top of the stack (i.e. last in the config) makes no sense. I would never expect such a configuration to ever work.
> Cannot create cluster with JGroups Gossip router
> ------------------------------------------------
>
> Key: WFLY-10046
> URL: https://issues.jboss.org/browse/WFLY-10046
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 12.0.0.Final
> Reporter: Miroslav Novak
> Assignee: Paul Ferraro
> Attachments: standalone-full-ha-gosship1.xml, standalone-full-ha-gosship2.xml
>
>
> I've used config from EAP 7.1.0/WF11 where gossip router was configured in udp stack like:
> {code}
> <stack name="udp">
> <transport type="UDP" shared="false" socket-binding="jgroups-udp"/>
> <protocol type="PING"/>
> <protocol type="MERGE3"/>
> <protocol type="FD_SOCK"/>
> <protocol type="FD_ALL"/>
> <protocol type="VERIFY_SUSPECT"/>
> <protocol type="pbcast.NAKACK2"/>
> <protocol type="UNICAST3"/>
> <protocol type="pbcast.STABLE"/>
> <protocol type="pbcast.GMS"/>
> <protocol type="UFC"/>
> <protocol type="MFC"/>
> <protocol type="FRAG2"/>
> <protocol type="TUNNEL">
> <property name="gossip_router_hosts">
> 0.0.0.0[12001]
> </property>
> </protocol>
> </stack>
> {code}
> Gossip router was started on localhost:
> {{java -cp $JBOSS_HOME//bin/client/jboss-client.jar org.jgroups.stack.GossipRouter -port 12001 -bindaddress 0.0.0.0}}
> but cluster does not form up. The same configuration works in EAP 7.1.
> Attaching xml config files for both of the servers.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years, 1 month