{"id":22845428,"url":"https://github.com/idealista/tomcat_role","last_synced_at":"2026-04-02T01:06:35.260Z","repository":{"id":45032935,"uuid":"96129099","full_name":"idealista/tomcat_role","owner":"idealista","description":"Ansible role to install Apache Tomcat Java Servlet Container","archived":false,"fork":false,"pushed_at":"2024-11-21T11:03:37.000Z","size":319,"stargazers_count":13,"open_issues_count":6,"forks_count":32,"subscribers_count":24,"default_branch":"master","last_synced_at":"2026-01-13T21:52:45.662Z","etag":null,"topics":["ansible","ansible-role","apache-tomcat","debian","java","tomcat"],"latest_commit_sha":null,"homepage":"","language":"Jinja","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/idealista.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-07-03T16:10:10.000Z","updated_at":"2024-11-21T11:03:22.000Z","dependencies_parsed_at":"2022-07-25T23:31:13.385Z","dependency_job_id":"ce3adf67-24a9-48bb-b83c-e4626dd6c128","html_url":"https://github.com/idealista/tomcat_role","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/idealista/tomcat_role","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idealista%2Ftomcat_role","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idealista%2Ftomcat_role/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idealista%2Ftomcat_role/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idealista%2Ftomcat_role/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/idealista","download_url":"https://codeload.github.com/idealista/tomcat_role/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idealista%2Ftomcat_role/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31293636,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T01:05:07.454Z","status":"ssl_error","status_checked_at":"2026-04-02T00:56:46.496Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","ansible-role","apache-tomcat","debian","java","tomcat"],"created_at":"2024-12-13T03:17:12.206Z","updated_at":"2026-04-02T01:06:35.238Z","avatar_url":"https://github.com/idealista.png","language":"Jinja","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Logo](https://raw.githubusercontent.com/idealista/tomcat_role/master/logo.gif)\n\n[![Build Status](https://travis-ci.org/idealista/tomcat_role.svg?branch=master)](https://travis-ci.org/idealista/tomcat_role)\n[![Ansible Galaxy](https://img.shields.io/badge/galaxy-idealista.tomcat__role-B62682.svg)](https://galaxy.ansible.com/idealista/tomcat_role)\n\n# Tomcat Ansible role\n\nThis ansible role installs a Tomcat server in a debian environment.\n\n- [Getting Started](#getting-started)\n\t- [Prerequisities](#prerequisities)\n\t- [Installing](#installing)\n- [Usage](#usage)\n- [Testing](#testing)\n- [Built With](#built-with)\n- [Versioning](#versioning)\n- [Authors](#authors)\n- [License](#license)\n- [Contributing](#contributing)\n\n## Getting Started\n\nThese instructions will get you a copy of the role for your ansible playbook. Once launched, it will install a [Tomcat](https://tomcat.apache.org/) server in a Debian system.\nSupported tomcat versions:\n- 7.x\n- 8.x\n- 8.5.x\n- 9.x\n\nSupported OS:\n- Debian:\n  - Stretch\n  - Buster\n- Ubuntu\n  - Focal\n\n### Prerequisities\n\nFor compatible Ansible versions check [.travis.yml](.travis.yml).\nInventory destination should be a Debian environment.\n\nFor testing purposes, [Molecule](https://molecule.readthedocs.io/) with Docker as driver and [Goss](http://goss.rocks) as verifier\nThis role needs a system with java previously installed. Its really recommended the use of idealista's java role for that purpose: [idealista.java-role](https://github.com/idealista/java_role)\n\n### Installing\n\nCreate or add to your roles dependency file (e.g requirements.yml) from GitHub:\n\n```\n- src: http://github.com/idealista/tomcat_role.git\n  scm: git\n  version: 1.0.0\n  name: tomcat\n```\n\nor using [Ansible Galaxy](https://galaxy.ansible.com/idealista/tomcat_role/) as origin if you prefer:\n\n```\n- src: idealista.tomcat_role\n  version: 1.0.0\n  name: tomcat\n```\n\nInstall the role with ansible-galaxy command:\n\n```\nansible-galaxy install -p roles -r requirements.yml -f\n```\n\nUse in a playbook:\n\n```\n- hosts: someserver\n  roles:\n    - { role: tomcat }\n```\n\n## Usage\n\nLook to the defaults properties file to see the possible configuration properties.\n\n## Testing\n\n### Install dependencies\n\n```sh\npipenv sync\npipenv shell\n```\n\nFor more information read the [pipenv docs](https://docs.pipenv.org/).\n\n### Running test\n\n```\nmolecule test\n```\n\nSee molecule/molecule.yml to check possible testing platforms.\n\n## Works With\n\n![Ansible](https://img.shields.io/badge/ansible-2.8.6-green.svg)\n![Molecule](https://img.shields.io/badge/molecule-3.0.4-green.svg)\n![Goss](https://img.shields.io/badge/goss-0.3.11-green.svg)\n\n## Versioning\n\nFor the versions available, see the [tags on this repository](https://github.com/idealista/tomcat_role/tags).\n\nAdditionaly you can see what change in each version in the [CHANGELOG.md](CHANGELOG.md) file.\n\n## Authors\n\n* **Idealista** - *Work with* - [idealista](https://github.com/idealista)\n\nSee also the list of [contributors](https://github.com/idealista/tomcat_role/contributors) who participated in this project.\n\n## License\n\n![Apache 2.0 License](https://img.shields.io/hexpm/l/plug.svg)\n\nThis project is licensed under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license - see the [LICENSE](LICENSE) file for details.\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](.github/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidealista%2Ftomcat_role","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidealista%2Ftomcat_role","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidealista%2Ftomcat_role/lists"}