Forge Home

tomcat

Configure and Install Tomcat on Ubuntu/Debian

10,288 downloads

8,427 latest version

4.9 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.7.0 (latest)
  • 0.6.0
  • 0.5.0
  • 0.4.0
  • 0.3.0
  • 0.2.0
  • 0.1.0 (deleted)
released Nov 6th 2015
This version is compatible with:

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'arpitaggarwal-tomcat', '0.7.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add arpitaggarwal-tomcat
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install arpitaggarwal-tomcat --version 0.7.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

arpitaggarwal/tomcat — version 0.7.0 Nov 6th 2015

tomcat puppet module

Table of Contents

  1. Overview
  2. Module Description
  3. What Tomcat Puppet Module Affects
  4. Usage

Overview

Configure and Install Tomcat on Ubuntu/Debian.

Module Description

Tomcat is an open-source web server and servlet container, and this module provides a streamlined way to install and configure Tomcat from a package.

What Tomcat Puppet Module Affects

  • configuration files and directories
  • package/service/configuration files for Tomcat
  • listened-to ports
  • /etc/default/tomcat{version}
  • /etc/tomcat{version}/server.xml

Usage

If you just want a tomcat 7 server installation with the default options you can run:

class { 'tomcat':  }

If you need to customize port configuration option you need to do the following:

class { 'tomcat':
  version   => '7',
  port => '9999'
}

If you need to customize all configuration options you need to do the following:

class { 'tomcat':
  version   => '6',
  port => '9999',
  java_home => '/usr/lib/jvm/java-8-oracle',
  java_opts => '-Djava.awt.headless=true -Xmx128m -XX:+UseConcMarkSweepGC',
  jsp_compiler => 'javac',
  logfile_days => '14',
  authbind => 'no'
}