Downloads:
217,824
Downloads of v 8.0.33:
57,363
Last Update:
28 May 2016
Package Maintainer(s):
Software Author(s):
- Apache Software Foundation
Tags:
application server apache jsf jsp jdk8- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Apache Tomcat
This is not the latest version of Apache Tomcat available.
- 1
- 2
- 3
8.0.33 | Updated: 28 May 2016
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
217,824
Downloads of v 8.0.33:
57,363
Maintainer(s):
Software Author(s):
- Apache Software Foundation
Apache Tomcat 8.0.33
This is not the latest version of Apache Tomcat available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Apache Software Foundation. The inclusion of Apache Software Foundation trademark(s), if any, upon this webpage is solely to identify Apache Software Foundation goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
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:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download tomcat --internalize --version=8.0.33 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade tomcat -y --source="'INTERNAL REPO URL'" --version="'8.0.33'" [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.0.33'"
$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.0.33'
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.0.33'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller tomcat
{
Name = "tomcat"
Version = "8.0.33"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'tomcat':
ensure => '8.0.33',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator ferventcoder on 28 May 2016.
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.0.33 folder is always created, so the actual install path is C:\Program Files\Apache Software Foundation\Tomcat\apache-tomcat-8.0.33
for the default case or path\apache-tomcat-8.0.33 with a custom option.
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)
}
}
}
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 | ? 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.
- commons-daemon-native.tar.gz (e98d96c7c71e) - ## / 58
- prunsrv-amd64.exe (e7024049cbaf) - ## / 65
- tomcat8w.exe (92fe8e8d5ebd) - ## / 62
- prunsrv-i386.exe (3f1bfc4be00f) - ## / 64
- tcnative-1.dll (9115c9ddbc6d) - ## / 56
- tomcat-native.tar.gz (8841f233027d) - ## / 57
- tcnative-1.dll (270655ffb400) - ## / 57
- apache-tomcat-8.0.33-windows-x64.zip (aab5b9aa4c53) - ## / 56
- apache-tomcat-8.0.33-windows-x86.zip (a9f4cd8da8a8) - ## / 57
- Tomcat.8.0.33.nupkg (1179bda0d40f) - ## / 54
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.95 | 2273 | Tuesday, September 24, 2024 | Approved | |
Apache Tomcat 9.0.93 | 462 | Tuesday, August 27, 2024 | Approved | |
Apache Tomcat 9.0.82 | 9622 | Tuesday, October 31, 2023 | Approved | |
Apache Tomcat 9.0.78 | 5132 | Friday, July 14, 2023 | Approved | |
Apache Tomcat 9.0.74 | 2322 | Tuesday, May 9, 2023 | Approved | |
Apache Tomcat 9.0.70 | 6062 | Thursday, January 5, 2023 | Approved | |
Apache Tomcat 9.0.69 | 1705 | Tuesday, November 22, 2022 | Approved | |
Apache Tomcat 9.0.65 | 3994 | Thursday, July 21, 2022 | Approved | |
Apache Tomcat 9.0.62 | 5552 | Friday, April 1, 2022 | Approved | |
Apache Tomcat 9.0.58 | 1540 | Wednesday, February 23, 2022 | Approved | |
Apache Tomcat 9.0.55 | 2646 | Thursday, December 2, 2021 | Approved | |
Apache Tomcat 9.0.45 | 12199 | Thursday, April 15, 2021 | Approved | |
Apache Tomcat 9.0.40 | 6217 | Saturday, November 21, 2020 | Approved | |
Apache Tomcat 9.0.38 | 1894 | Wednesday, September 30, 2020 | Approved | |
Apache Tomcat 9.0.37 | 1707 | Friday, July 31, 2020 | Approved | |
Apache Tomcat 9.0.36 | 3250 | Thursday, June 18, 2020 | Approved | |
Apache Tomcat 9.0.34 | 1700 | Wednesday, April 22, 2020 | Approved | |
Apache Tomcat 9.0.30 | 3238 | Friday, December 13, 2019 | Approved | |
Apache Tomcat 9.0.29 | 1023 | Friday, November 22, 2019 | Approved | |
Apache Tomcat 9.0.27 | 1120 | Saturday, October 12, 2019 | Approved | |
Apache Tomcat 9.0.26 | 734 | Friday, September 20, 2019 | Approved | |
Apache Tomcat 9.0.24 | 1260 | Sunday, August 18, 2019 | Approved | |
Apache Tomcat 9.0.22 | 1918 | Wednesday, July 10, 2019 | Approved | |
Apache Tomcat 9.0.21 | 8431 | Saturday, June 8, 2019 | Approved | |
Apache Tomcat 9.0.20 | 1277 | Tuesday, May 14, 2019 | Approved | |
Apache Tomcat 9.0.19 | 989 | Tuesday, April 30, 2019 | Approved | |
Apache Tomcat 9.0.0-rc | 892 | Friday, March 31, 2017 | Exempted | |
Apache Tomcat 8.5.12 | 38209 | Friday, March 31, 2017 | Approved | |
Apache Tomcat 8.0.33 | 57363 | Saturday, May 28, 2016 | Approved | |
Apache Tomcat 8.0.32 | 20297 | Friday, February 26, 2016 | Approved | |
Apache Tomcat 8.0.29 | 1121 | Wednesday, November 25, 2015 | Approved | |
Apache Tomcat 8.0.23 | 1277 | Wednesday, May 27, 2015 | Approved | |
Apache Tomcat 8.0.22 | 607 | Saturday, May 16, 2015 | Approved | |
Apache Tomcat 8.0.21 | 616 | Monday, April 13, 2015 | Approved | |
Apache Tomcat 8.0.20 | 851 | Thursday, February 26, 2015 | Approved | |
Apache Tomcat 8.0.18 | 541 | Friday, February 20, 2015 | Approved | |
Apache Tomcat 7.0.69 | 1721 | Saturday, May 28, 2016 | Approved | |
Apache Tomcat 7.0.59 | 1676 | Friday, March 27, 2015 | Approved | |
Tomcat 7.0.40.002 | 1602 | Tuesday, June 11, 2013 | Approved | |
Tomcat 7.0.40.1 | 670 | Tuesday, June 4, 2013 | Approved | |
Tomcat 7.0.40 | 677 | Tuesday, June 4, 2013 | Approved |
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.