Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

JBoss%20Interview%20Questions%20and%20Answers

Question: How to build clusters in JBoss?
Answer: Here is a nutshell summary from the example given for quick start: 
Execute from your jboss bin directory:
$ ./run.sh -c all -g DocsPartition -u 239.255.100.100 -b 192.168.0.101 -Djboss.messaging.ServerPeerID=1
  • ./run.sh = the executable
  • -c all = use server in jboss_home/server/all directory
  • -g DocsPartition = this is the partition name, use whatever but should be the same across nodes
  • -u 239.255.100.100 = this is the multicast address, ususally just pick anything in the 239.255.x.y range and you should be ok
  • -b 192.168.0.101 = this is the ip of the machine the node is on
  • -Djboss.messaging.ServerPeerID=1 = this is the peerid, it must be unique for each node.
So the start script that you would run on your second machine for the second node would look like:
$ ./run.sh -c all-node2 -g DocsPartition -u 239.255.100.100 -b 192.168.0.102 -Djboss.messaging.ServerPeerID=2
You can also use nohup to send the process to the background.
Now that both nodes should be running, you have to enable and configure the sticky sessions on the webserver and each server.
Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook