How do I setup JBoss 5.1.0.GA to run multiple instances?
Posted
by djangofan
on Server Fault
See other posts from Server Fault
or by djangofan
Published on 2009-12-22T23:11:03Z
Indexed on
2010/05/21
19:41 UTC
Read the original article
Hit count: 302
jboss
|application-server
Does anyone have any experience or advice in setting up multiple JBoss 5.1.x instances on the same machine that has 1 network card?
Here is what I did:
- Installed JBoss 5.1.0.GA into c:\myjboss 1.5. I copied the server/default directory to server/ports-01 and server/ports-02 so they have their own config. did I assume correctly?
- Ran .\run.bat -c ports-01
- Ran .\run.bat -c ports-02
At this point there are 2 instances but the second instance doesn't load correctly because of what is probably a few port conflicts. For example: the http port ends up being 8080 for both instances, which it gets from line #49 in the C:\myjboss\server\all\conf\bindingservice.beans\META-INF\bindings-jboss-beans.xml file. Earlier in the server load it clearly gets the value from line#63 in that same file. I don't know why it gets part of the port config from line #49 and the other part from line#63. Confused.
I also tried: .\run.bat -Djboss.service.binding.set=ports-01 -c ports-01 and it made little difference.
Any ideas on what I am doing wrong?
© Server Fault or respective owner