JBoss Interview Questions and Answers
Ques. How to build clusters in JBoss?Ans. here is a nutshell summary from the example given in the .org quick start: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 thw webserver and each server. |
Is it helpful?
Yes
No
Most helpful rated by users: