I have two web applications, which I want to be running under the one tomcat instance, but on a different ports to connect, for example first war - under 8080, and second - 8090. Is it possible to do using just two connectors in the server.xml?

So to connect to first app - i'll use address http://localhost:8080/myFirstApp and for second - http://localhost:8090/mySecondApp. How can I do this without running two tomcat innstances on the localhost?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Well, I think you can declare the two connectors with different ports and they will run properly. But you can't limit the access to apps via configuration. That is - both apps will be accessible on both ports. If you need to limit that, make a Filter that checks and returns 404.

link|improve this answer
thanks, I don't need the limiting actually.. I just want to limit thread pool for every app to be not shared. so that if one application is very busy and does not have any free threads in pool - other app will be still accessible via other port - as thread pools should be different and not shared for diff connectors, right? – javagirl Nov 30 '11 at 19:43
I guess so, yes. But you can have in-application thread-pools as well that are not shared. I wouldn't make a connector only for the sake of thread pools – Bozho Nov 30 '11 at 20:10
why, what's bad with having a two or more connectors? – javagirl Nov 30 '11 at 20:35
nothing, but you shouldn't use them for the wrong reason. If the reason is connection pools - there are better solutions. – Bozho Nov 30 '11 at 20:41
having two instances? or even placing them to the different physical servers? one app calls another, and if there are too much calls for first app - and no any free thread available - second app will not answer and we have a classic deadlock, because first app also is waiting - waiting the answer from second app – javagirl Nov 30 '11 at 21:03
show 3 more comments
feedback

There's no problem with running two connectors.

But if you want to have each app accessible on different port and only there (not on both/all ports), copy Service part in conf/server.xml changing the ports and names so that there's no conflict.

You'll have to specify different webapps directories for both Services and put each of your webapps in different one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.