deploying multiple applications to Tomcat

73,054

Solution 1

If you want Tomcat to listen to multiple ports, you need to setup a connector for each port. To get each port mapped to a different application, you need need to wrap each connector in a service and create a host with it's own appBase.

Example of service definition in server.xml:

<Service name="foo">
    <Connector port="80" protocol="org.apache.coyote.http11.Http11NioProtocol" />
    <Engine name="Catalina80" defaultHost="localhost">
        <Host name="localhost" appBase="foo" unpackWARs="true" autoDeploy="true" />
    </Engine>
</Service>

<Service name="bar">
    <Connector port="81" protocol="org.apache.coyote.http11.Http11NioProtocol" />
    <Engine name="Catalina81" defaultHost="localhost">
        <Host name="localhost" appBase="bar" unpackWARs="true" autoDeploy="true" />
    </Engine>
</Service>

Instead of dropping the war files in the webapps directory, you need to create the directory foo for port 80 and bar for port 81. Name both war files ROOT.war and drop them in their own base directory. You can of course have multiple apps in each directory if you need.

The directory defined in appBase is relative to the tomcat directory. By using an absolute path, it could be anywhere on your system. From the documentation:

appBase

The Application Base directory for this virtual host. This is the pathname of a directory that may contain web applications to be deployed on this virtual host. You may specify an absolute pathname, or a pathname that is relative to the $CATALINA_BASE directory. [...] If not specified, the default of webapps will be used.

Another option is to keep the default tomcat configuration and use another http server (apache, nginx, lighttpd,...) to map a port to the internal path of a tomcat application.

The root application won't receive requests that match other applications, e.g. /foo/example will go to foo.war, /example/example will go to ROOT.war.

Solution 2

No need to change ports

Juggling multiple incoming requests and outgoing responses across many users using any of multiple running web apps is the purpose of Java Servlet technology. All that traffic can be handled on a single port.

Simply drop both war files into Tomcat's webapps folder. That is all you need to do.

By default, Tomcat expands ("explodes" some say) each war (technically a zip file) into a folder and automatically deploys the app for you. This happens on the fly if Tomcat is already running, or on startup when you launch Tomcat. Some people turn off the auto-deploy feature for production to save Tomcat the work of scanning for new war files.

No need for multiple ports. A Servlet container's job is to examine the URL and determine which Servlet should be invoked.

By default, the name of the war file determines the URL. Given your example:

All the web apps can be served on the same port. Your only concern with ports is if you use Unix-style operating system that protects access to low-numbered ports. This includes Mac OS X, BSD, Linux, and Solaris. Either use a high-numbered port in your URL (Tomcat defaults to 8080), or use port-forwarding to send incoming requests on port 80 (web browsers’ default) to Tomcat’s port (such as 8080).

If you want the war files served by using different domains, learn about "virtual host" settings in Tomcat.

Solution 3

I have successfully configured Tomcat to run apps on multiple ports. I don't know if this is the best way to do this, but I simply duplicated contents of

<Service>...</Service>

in conf/server.xml and changed the ports for the Connector tags and changed the appBase attribute of the Host tag. You control which port your app runs on based upon the appBase that it is deployed to.

Share:
73,054
Dónal
Author by

Dónal

I earn a living by editing text files. I can be contacted at: [email protected] You can find out about all the different kinds of text files I've edited at: My StackOverflow Careers profile

Updated on July 09, 2022

Comments

  • Dónal
    Dónal almost 2 years

    I want to deploy two applications foo.war and bar.war to the same Tomcat instance. Is it possible for them to listen for connections on different ports, e.g. foo listens on port 81 and bar listens on port 82? If so, how can I configure this? I realise that it is not necessary for the applications to listen on different ports, but that is what I want to achieve.

    Also, am I right in saying that if I rename foo.war to ROOT.war such that it runs in the root context, then all requests to this Tomcat instance will be handled by the foo app and therefore bar would have to be deployed to a separate Tomcat instance?

  • Dónal
    Dónal about 10 years
    I appreciate the time you put into this, but it doesn't answer either of my questions (1) is it possible to have different apps deployed to the same Tomcat instance listen on different ports? (2) if an app is deployed to Tomcat's root context, will it handle all HTTP requests sent to that Tomcat instance?
  • Basil Bourque
    Basil Bourque about 10 years
    @Dónal RE:(1) I don't know about separate ports. Look at the Connector tag for the Service tag in server.xml file. But there is no need for separate ports. The URL is all the web server / servlet container needs to separate requests for different web apps. (2) The most specific URLs (longer, meaning more components) get handled by their defined servlets. The bullet list of three items posted above in my Answer could all be deployed together. If the the URL specifies "foo" you get the "foo" servlet. If the URL does not specify, it falls back to the ROOT servlet.
  • Dónal
    Dónal about 10 years
    I realise it is not necessary to have each app listening on a separate port, but that is what I want to achieve
  • Dónal
    Dónal about 10 years
    thanks for the response, should the foo and bar directories you mentioned be created under webapps ?
  • kapex
    kapex about 10 years
    I would create them elsewhere, otherwise the apps could get deployed twice if webapps is still used as appBase by some another connector.
  • Dónal
    Dónal about 10 years
    Given the configuration above, where should the foo and bar directories be located?
  • kapex
    kapex about 10 years
    The path should be relative to the tomcat directory ($CATALINA_HOME), where exactly that is depends on your system. You can also use absolute paths, like /usr/home/foo.
  • Dónal
    Dónal about 10 years
    So using the config above, foo and bar should be siblings of webapps?
  • kapex
    kapex about 10 years
    Correct. I updated the answer with some info from the documentation.
  • Stefan Falk
    Stefan Falk almost 9 years
    I am having this issue here but reading this question/answer I was wondering if I could do the same as you described in your answer.
  • Mrinmoy
    Mrinmoy about 7 years
    though it does not address the specific points of the question, but is a nice explanation and clarifies some fundamental concept of working of a servlet container in general. Thanks for the effort and time @Dónal
  • Suraj Gautam
    Suraj Gautam almost 6 years
    Is it safe to deploy 3 war files in a single tomcat? Are there any pros or cons of it? Somebody please explain.
  • Basil Bourque
    Basil Bourque almost 6 years
    @SurajGautam Certainly, you can deploy as many WAR files as you have web apps. Each has its own URL to be called by the users.
  • Suraj Gautam
    Suraj Gautam almost 6 years
    OK, @BasilBourque! But is there any concurrency issue or something like that that I may face while doing so?
  • Basil Bourque
    Basil Bourque almost 6 years
    @SurajGautam I suggest you read up on the basics of Java Servlet technology. Start with Wikipedia, then the Oracle Tutorial. Creating the concurrent multithreaded environment to handle many simultaneous incoming requests and outgoing responses is the core purpose of Java Servlet technology. You need to be very aware of this. If your threads share any resources then you are responsible for proper concurrent programming. If so, study the book by Goetz et al., Java Concurrency in Practice.
  • m b
    m b over 3 years
    What is sites-enabled/blah.conf can you elaborate and where are the DocumentRoot,JkMount etc...