Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

TBD - This article can also be improved to use the newer conventions in Tomcat server names.

Table of Contents

Introduction

It is often useful to have Apache front Tomcat.

...

The Apache Tomcat Connector is often called by its binary file mod_jk which I will use from this point onwards.

Install mod_jk

There are two different methods of installing mod_jk. The simper being using apt-get if you have Ubuntu.

Using apt-get

With Ubuntu you can have mod_jk almost automatically install for you via,

...

  • /usr/lib/apache2/modules/mod_jk.so (this will not always be the most current - you can see the current version by looking at the package info)
  • /etc/libapache2-mod-jk/workers.properties (create a generic workers.properties file for generic setup of Tomcat 6.x)

  • /etc/apache2/mods-available/jk.load (file which loads the mod_jk module)
  • /etc/apache2/mods-enabled/jk.load (symbolic link which starts the mod_jk module)
  • /etc/apache2/mods-available/jk.conf (defines how mod jk should run - if using Ubuntu 11 or lower you must manually create this file)

Manually Installing mod_jk

I often have to do this on Solaris or alternative operating systems so the manual process of installing mod_jk is good to have handy.

Enable mod_jk

The installer will also enable the modules in Apache essentially running below command for you,

...

jk_module in the resulting output shows that the module loaded properly.

Configure Mod_jk

workers.properties Configuration File

Edit or create (in the case of a manual setup) /etc/libapache2-mod-jk/workers.properties which defines how Apache will pass the traffic to Tomcat.

...

The load balancing uses weighted round-robin with sticky sessions. The lower the lbfactor number the less weight and as such the less work done by the worker. In our example, since both Tomcat0 and Tomcat1 have a factor of 1 the load balance is split about 50/50.

Tin's Adjustments

What you have so far should work. However, if you want to match what I use in production I also made the following adjustments.

...

Note

If someone can let me know why we would want to have these properties let me know.

Configure Tomcat AJP

Tomcat out of the box already has AJP enabled and listening on port 8009 with default parameters in server.xml.

The default parameters are generally sufficient for most environments. For more advanced environments you should read the AJP Connector documentation at Apache Tomcat Configuration Reference.

Configure Map Points in Apache

This last step will be different depending on if you are using virtual hosts or not.

...

If you wanted to use the load balancer you would change Tomcat0 to loadbalancer.

Restart Apache

Finally you must restart Apache for the changes to take effect.

...

Now you should be able to view the examples site without specifying port 8080, http://www.krypton.com/examples/

Excluding Mod_jk

In the situation where jkmount is using a wildcard as a context root for example ofbiz an exclude can be added to stop jkmount from affecting the directory.

...

Note

This option is not recommended but in some situations is required

 

Resources

http://www.gustavomejia.com/blog/2008/03/02/1204455261015.html - seems to have decent instructions using ubuntu apt-get to set up mod_jk. Don't understand the java_home thing though.

...