Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

206,166

Downloads of v 8.5.12:

37,690

Last Update:

31 Mar 2017

Package Maintainer(s):

Software Author(s):

  • Apache Software Foundation

Tags:

application server apache jsf jsp jdk8

Apache Tomcat

This is not the latest version of Apache Tomcat available.

  • 1
  • 2
  • 3

8.5.12 | Updated: 31 Mar 2017

Downloads:

206,166

Downloads of v 8.5.12:

37,690

Maintainer(s):

Software Author(s):

  • Apache Software Foundation

Apache Tomcat 8.5.12

This is not the latest version of Apache Tomcat available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Failed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Apache Tomcat, run the following command from the command line or from PowerShell:

>

To upgrade Apache Tomcat, run the following command from the command line or from PowerShell:

>

To uninstall Apache Tomcat, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade tomcat -y --source="'INTERNAL REPO URL'" --version="'8.5.12'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade tomcat -y --source="'INTERNAL REPO URL'" --version="'8.5.12'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install tomcat
  win_chocolatey:
    name: tomcat
    version: '8.5.12'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'tomcat' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '8.5.12'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller tomcat
{
    Name     = "tomcat"
    Version  = "8.5.12"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'tomcat':
  ensure   => '8.5.12',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved by moderator flcdrg on 15 Apr 2017.

Description

Tomcat is a Application Server. It is possible to run Web application ARchive (WAR) files using Tomcat. Apache Tomcat requires a JDK in order to run.

Optional installation commands:

choco install tomcat -params "servicename=*servicename*" to specify a custom name for the Tomcat Windows service. This defaults to Tomcat8.

choco install tomcat -params "unzipLocation=*path*" to specify the root directory for the Tomcat service. This defaults to C:\Program Files\Apache Software Foundation\Tomcat.
Note: An apache-tomcat-8.5.12 folder is always created, so the actual install path is C:\Program Files\Apache Software Foundation\Tomcat\apache-tomcat-8.5.12 for the default case or path\apache-tomcat-8.5.12 with a custom option.


tools\chocolateyHelpers.ps1
function Set-ChocolateyPackageOptions {
    [CmdletBinding()]
    param(
        [Parameter(Mandatory=$True,Position=1)]
        [hashtable] $options
    )
    $packageParameters = $env:chocolateyPackageParameters;

    if ($packageParameters) {
        $parameters = ConvertFrom-StringData -StringData $env:chocolateyPackageParameters.Replace(" ", "`n")
        $parameters.GetEnumerator() | % {
           $options[($_.Key)] = ($_.Value)
        }
    }
}
tools\chocolateyInstall.ps1
$PFFolder = if (Get-ProcessorBits -eq 64) { "$Env:ProgramFiles" } else { "$Env:ProgramFiles(x86)" }

$options = @{
    version = '8.5.12'
    unzipLocation = (Join-Path $PFFolder "Apache Software Foundation\tomcat")
    serviceName = 'Tomcat8'
}

$unzipParameters = @{
    packageName = 'tomcat'
    url = "https://archive.apache.org/dist/tomcat/tomcat-8/v$($options['version'])/bin/apache-tomcat-$($options['version'])-windows-x86.zip"
    url64bit = "https://archive.apache.org/dist/tomcat/tomcat-8/v$($options['version'])/bin/apache-tomcat-$($options['version'])-windows-x64.zip"
    checksum = '151ecf591ec0264f9c2ac056373537e13cba2680'
    checksumType = 'sha1'
    checksum64 = '814e96e6a4d3bc124b93a8314506fac933d28c2f'
    checksumType64 = 'sha1'
}

if(!$PSScriptRoot){ $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent }
. "$PSScriptRoot\ChocolateyHelpers.ps1"

Set-ChocolateyPackageOptions $options
Install-ChocolateyZipPackage @unzipParameters -UnzipLocation $options['unzipLocation']

$catalinaHome = Join-Path $options['unzipLocation'] "apache-tomcat-$($options['version'])";
Install-ChocolateyEnvironmentVariable 'CATALINA_HOME' "$catalinaHome"

$binPath =  Join-Path $catalinaHome 'bin'
Push-Location $binPath
Start-ChocolateyProcessAsAdmin ".\service.bat install $($options['serviceName'])"
Pop-Location

Export-CliXml -Path (Join-Path $PSScriptRoot 'options.xml') -InputObject $options

Get-Service | Where-Object Name -eq $options['serviceName'] | Start-Service
tools\chocolateyUninstall.ps1
if(!$PSScriptRoot){ $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent }

$optionsFile = (Join-Path $PSScriptRoot 'options.xml')

if (!(Test-Path $optionsFile)) {
  throw "Install options file missing. Could not uninstall."
}

$options = Import-CliXml -Path $optionsFile
$catalinaHome = Join-Path $options['unzipLocation'] "apache-tomcat-$($options['version'])";
Install-ChocolateyEnvironmentVariable 'CATALINA_HOME' "$catalinaHome"

$service = Get-Service | Where-Object Name -eq $options['serviceName']
if ($service -ne $null) {
  Stop-Service $service
}

$binPath = Join-Path $catalinaHome 'bin'
if (Test-Path $binPath) {
  Push-Location $binPath
  Start-ChocolateyProcessAsAdmin ".\service.bat uninstall $($options['serviceName'])"
  Pop-Location
}

if ((Get-ChildItem $options['unzipLocation'] | Measure-Object).Count -eq 1) { 
  Remove-Item $options['unzipLocation'] -Recurse -Force
}
else {
  Remove-Item (Join-Path $options['unzipLocation'] "apache-tomcat-$($options['version'])") -Recurse -Force
}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Apache Tomcat 9.0.78 4940 Friday, July 14, 2023 Approved
Apache Tomcat 9.0.74 2295 Tuesday, May 9, 2023 Approved
Apache Tomcat 9.0.70 4921 Thursday, January 5, 2023 Approved
Apache Tomcat 9.0.69 1645 Tuesday, November 22, 2022 Approved
Apache Tomcat 9.0.65 3936 Thursday, July 21, 2022 Approved
Apache Tomcat 9.0.62 5503 Friday, April 1, 2022 Approved
Apache Tomcat 9.0.58 1493 Wednesday, February 23, 2022 Approved
Apache Tomcat 9.0.55 2576 Thursday, December 2, 2021 Approved
Apache Tomcat 9.0.45 12160 Thursday, April 15, 2021 Approved
Apache Tomcat 9.0.40 6174 Saturday, November 21, 2020 Approved
Apache Tomcat 9.0.38 1855 Wednesday, September 30, 2020 Approved
Apache Tomcat 9.0.37 1639 Friday, July 31, 2020 Approved
Apache Tomcat 9.0.36 3218 Thursday, June 18, 2020 Approved
Apache Tomcat 9.0.34 1664 Wednesday, April 22, 2020 Approved
Apache Tomcat 9.0.30 3159 Friday, December 13, 2019 Approved
Apache Tomcat 9.0.29 956 Friday, November 22, 2019 Approved
Apache Tomcat 9.0.27 1080 Saturday, October 12, 2019 Approved
Apache Tomcat 9.0.26 695 Friday, September 20, 2019 Approved
Apache Tomcat 9.0.24 1215 Sunday, August 18, 2019 Approved
Apache Tomcat 9.0.22 1887 Wednesday, July 10, 2019 Approved
Apache Tomcat 9.0.21 7932 Saturday, June 8, 2019 Approved
Apache Tomcat 9.0.20 1249 Tuesday, May 14, 2019 Approved
Apache Tomcat 9.0.19 943 Tuesday, April 30, 2019 Approved
Apache Tomcat 9.0.0-rc 858 Friday, March 31, 2017 Exempted
Apache Tomcat 8.5.12 37690 Friday, March 31, 2017 Approved
Apache Tomcat 8.0.33 56538 Saturday, May 28, 2016 Approved
Apache Tomcat 8.0.32 20254 Friday, February 26, 2016 Approved
Apache Tomcat 8.0.29 1082 Wednesday, November 25, 2015 Approved
Apache Tomcat 8.0.23 1233 Wednesday, May 27, 2015 Approved
Apache Tomcat 8.0.22 578 Saturday, May 16, 2015 Approved
Apache Tomcat 8.0.21 572 Monday, April 13, 2015 Approved
Apache Tomcat 8.0.20 795 Thursday, February 26, 2015 Approved
Apache Tomcat 8.0.18 504 Friday, February 20, 2015 Approved
Apache Tomcat 7.0.69 1686 Saturday, May 28, 2016 Approved
Apache Tomcat 7.0.59 1614 Friday, March 27, 2015 Approved
Tomcat 7.0.40.002 1552 Tuesday, June 11, 2013 Approved
Tomcat 7.0.40.1 625 Tuesday, June 4, 2013 Approved
Tomcat 7.0.40 638 Tuesday, June 4, 2013 Approved
Discussion for the Apache Tomcat Package

Ground Rules:

  • This discussion is only about Apache Tomcat and the Apache Tomcat package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Apache Tomcat, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus