Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 1.67 KB

README.md

File metadata and controls

27 lines (16 loc) · 1.67 KB

usertomcat

Description

A module for debian based systems which offer the command tomcatX-instance-create provided by the package tomcatX-user, where the X should stand for version 7 or 8.

The goal is to install and run different tomcat containers on the same server with the persmissons of different users. This allows better separation of the web applications running on tomcat like differentiated resource control and access management as well as independent operation of the webapps in case of failures. By using the tomcat packaged provided by debian the it is possible to benefit from security updates provided by the package maintainers.

Usage

usertomcat::instance { 'tomcat-jenkins':
  http_port         => '9090',
  control_port      => '9005',
}

This would install the packages tomcat7 and tomcat7-user and libtcnative-1. It create a user and a group named "tomcat-jenkins" on the system. The usertomcat directory would be in the /home/tomcat-jenkins/tomcat-jenkins/, where the webapps dir the logs dir etc reside. A symlink to the logs dir is created in /var/logs/tomcat-jenkins. The tomcat will have the APR based native library enabled (docs).

Documentation

User and group name and id, tomcat version, jmx port etc. could be configured. Have a look at the file instance.pp for all configuration options.

The full documentation is available from GitHub Pages.