Wildfly 35
#329
Replies: 3 comments
|
Hey, @rpx99. Thanks for reporting. I'll take a look soon. One thing to analyze: when you deploy, you'll need to provide the RAFT ID of each node. The RAFT ID must be in the <stack name="raft-stack">
<transport type="TCP" socket-binding="jgroups-tcp"/>
<protocol type="RAFT">
<property name="raft_id">192.168.1.100[7600]</property> <!-- Notice the new property, unique for each node. -->
<property name="members">192.168.1.100[7600],192.168.1.101[7700],192.168.1.102[7800]</property>
</protocol>
<protocol type="FD_ALL"/>
<protocol type="ELECTION"/>
<protocol type="GMS"/>
</stack> |
0 replies
|
This is likely a WildFly configuration problem, unrelated to JGroups RAFT itself. See https://wildfly.zulipchat.com/#narrow/channel/196266-wildfly-user/topic/jgroups.20raft |
0 replies
|
Thanks a lot. I tried both of your suggestions. Still, unfortunately the module doesn't seem to get loaded. Any other ideas or maybe you can try if it works on your machine, please? Thank you. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi, I am trying to use jgroups-raft with wildfly 35. Created a module with the latest jar jgroups-raft-1.0.14.Final.jar in wildfly-35.0.0.Final\modules\system\layers\base\org\jgroups\raft\main
Part of my standalone-full-ha.xml :
Cannot get it to work.
What are my mistakes?
Thanks!
All reactions