All Projects → geerlingguy → ansible-role-tomcat6

geerlingguy / ansible-role-tomcat6

Licence: MIT license
Ansible Role - Tomcat 6 (DEPRECATED)

Projects that are alternatives of or similar to ansible-role-tomcat6

ansible-role-gogs
DEPRECATED Ansible Role - Gogs: Go Git Service
Stars: ✭ 27 (+80%)
Mutual labels:  role
ng2-acl
Role based permissions for Angular v2++
Stars: ✭ 15 (+0%)
Mutual labels:  role
ansible-role-passenger
Ansible Role - Passenger with Nginx
Stars: ✭ 26 (+73.33%)
Mutual labels:  role
ansible-role-backup
Ansible Role - Backup for simple servers
Stars: ✭ 122 (+713.33%)
Mutual labels:  role
ansible-role-php-redis
Ansible Role - PhpRedis
Stars: ✭ 15 (+0%)
Mutual labels:  role
aarbac
An Automated Role Based Access Control .NET framework with T-SQL Query Parser which automatically parse select, insert, update, delete queries based on the logged in user role
Stars: ✭ 18 (+20%)
Mutual labels:  role
discord-reaction-role-bot
A Discord bot that allows users to self-assign roles using reactions.
Stars: ✭ 110 (+633.33%)
Mutual labels:  role
ansible-role-glusterfs
Ansible Role - GlusterFS
Stars: ✭ 95 (+533.33%)
Mutual labels:  role
aoscx-ansible-role
Ansible roles for AOS-CX switches
Stars: ✭ 15 (+0%)
Mutual labels:  role
ansible-role-drupal
Ansible Role - Drupal
Stars: ✭ 80 (+433.33%)
Mutual labels:  role
40ansible
Ansible modules and examples for Fortinet products using the REST API
Stars: ✭ 77 (+413.33%)
Mutual labels:  role
ansible-role-mysql
Ansible Role - MySQL and MariaDB
Stars: ✭ 28 (+86.67%)
Mutual labels:  role
objection-authorize
isomorphic, "magical" authorization integration with Objection.js 🎉
Stars: ✭ 71 (+373.33%)
Mutual labels:  role
ansible-concourse
An ansible role to manage Concourse CI
Stars: ✭ 22 (+46.67%)
Mutual labels:  role
ansible-role-kibana
Ansible Role - Kibana
Stars: ✭ 104 (+593.33%)
Mutual labels:  role
Bee-Connect
Ruby on Rails App. A good example of how to build social networking system with live chat support, blogging,groups etc.
Stars: ✭ 30 (+100%)
Mutual labels:  role
reaction-light
Easy to use reaction role Discord bot written in Python.
Stars: ✭ 108 (+620%)
Mutual labels:  role
ansible-role-elasticsearch-curator
Ansible Role - Elasticsearch Curator
Stars: ✭ 31 (+106.67%)
Mutual labels:  role
ansible-role-php-versions
Ansible Role - PHP Versions
Stars: ✭ 78 (+420%)
Mutual labels:  role
ansible-role-phpmyadmin
Ansible Role - phpMyAdmin
Stars: ✭ 40 (+166.67%)
Mutual labels:  role

Ansible Role: Tomcat 6

DEPRECATION NOTICE: Tomcat 6's EOL is December 31, 2016, meaning there will no longer be support or security updates from the Apache Software Foundation. This role will remain on Galaxy for historical purposes, but you should migrate to newer versions or otherwise update your software ASAP!

Build Status

An Ansible Role that installs Tomcat 6 on RedHat/CentOS and Debian/Ubuntu Linux servers.

Requirements

None.

Role Variables

Available variables are listed below, along with default values (see defaults/main.yml):

tomcat6_enabled: true

Whether Tomcat 6 should be started at boot (as well as at the time this playbook is run). Set to false if you would like to leave Tomcat 6 installed but not running, or want to control it on your own.

tomcat6_server_port: 8005

The port on which the Tomcat 6 server itself will run (not the difference between this and the tomcat6_catalina_port).

tomcat6_hostname: localhost

The hostname for this server. localhost works fine for many Tomcat web applications which are not dependent on a particular hostname being set (e.g. Apache Solr).

tomcat6_catalina_port: 8983

The port on which Catalina will listen for requests. (This is the port through which webapps will be accessible).

tomcat6_catalina_redirect_port: 8443

This is the port to which requests will be redirected if they come in on a non-SSL port, but are required to be secure via a security constraint.

Dependencies

  • geerlingguy.java (Installs Java for CentOS 6.x).

Example Playbook

- hosts: webservers
  vars_files:
    - vars/main.yml
  roles:
    - { role: geerlingguy.tomcat6 }

Inside vars/main.yml:

tomcat6_hostname: example.com
tomcat6_catalina_port: 8080

License

MIT / BSD

Author Information

This role was created in 2014 by Jeff Geerling, author of Ansible for DevOps.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].