Is it possible to have JBOSS and TOMCAT running on same machine?

Hi,

We have developed an application using j2ee technology and jboss as application server.

In the production server there is alreay tomcat running in it. Now we want to use the same resource...but as we are getting some port number problems on the machine which has both tomcat and jboss we are struck.

can anyone plz help us ...

Thanks & Regards,

Sha

[394 byte] By [shasunshaa] at [2007-10-3 2:21:33]
# 1
Last time I looked, this site was neither for JBoss nor for Tomcat support. I'm not sure whether you can plug Tomcat into JBoss directly at all, since JBoss already provides a servlet container of its own. Might be possibe, might not be. Read the manual and ask JBoss support.
CeciNEstPasUnProgrammeura at 2007-7-14 19:20:30 > top of Java-index,Java Essentials,New To Java...
# 2
Hi Ceci,Thanx for the info...but still we need some instant solution...as the time limit is low.cud any one plz help.Thanks & Regards,Sha
shasunshaa at 2007-7-14 19:20:30 > top of Java-index,Java Essentials,New To Java...
# 3
I was told that JBOSS has an embeddable container (a J2EE micro-container) that can run on any Web server.Maybe you ought to investigate this.
karma-9a at 2007-7-14 19:20:30 > top of Java-index,Java Essentials,New To Java...
# 4
you need to configure them to not use the same ports.By default both will try to use port 8080 for http traffic for example, which causes conflicts.
jwentinga at 2007-7-14 19:20:30 > top of Java-index,Java Essentials,New To Java...
# 5
Hi jwenting !Thanks for the info...this is what exactly we r trying to do but are not able to achieve it.It will be very helpful if u cud guide us regarding this..Thanks & Regards,Sha
shasunshaa at 2007-7-14 19:20:30 > top of Java-index,Java Essentials,New To Java...
# 6
u could change the port no setting for tomcat inthe server.xml file under the conf folderlook for Connector tag
PMJaina at 2007-7-14 19:20:30 > top of Java-index,Java Essentials,New To Java...
# 7
and the same for JBoss, under the tomcat/conf directory in your JBoss server/default/deploy directory.
jwentinga at 2007-7-14 19:20:30 > top of Java-index,Java Essentials,New To Java...