# Install tomcat@10 with Homebrew, apt, pacman, scoop, zypper, chocolatey, dnf, Nix

Implementation of Java Servlet and JavaServer Pages. Version 10.1.57 via Homebrew; verified 2026-07-07.

## Install

```sh
sudo av install brew:tomcat@10
```

Additional install commands:

### macOS

- Homebrew (100%):

```sh
brew install tomcat@10
```

  Evidence: local Homebrew formula metadata

### Linux

- Debian apt (92%):

```sh
sudo apt install libtomcat10-embed-java
```

  Evidence: Debian stable package indexes: libtomcat10-embed-java from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- pacman (92%):

```sh
sudo pacman -S tomcat10
```

  Evidence: Arch Linux sync databases: tomcat10 from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install tomcat10
```

  Evidence: openSUSE Tumbleweed package metadata: tomcat10 from https://download.opensuse.org/tumbleweed/repo/oss/repodata/be8d3611d25469107f32075a1697e69ec57a2b850b42348a658cc671ad5ec2b50760d02c3e59524d50da9a11d5be799bdaffba2e166e8ca8858512e3c0bd665d-primary.xml.zst

- dnf (92%):

```sh
sudo dnf install tomcat
```

  Evidence: Fedora Rawhide package metadata: tomcat from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#tomcat
```

  Evidence: nixpkgs package indexes: tomcat from https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/top-level/all-packages.nix

### Windows

- Scoop (92%):

```sh
scoop install versions/tomcat10
```

  Evidence: Scoop official bucket manifest trees: bucket/tomcat10.json from https://api.github.com/repos/ScoopInstaller/Versions/git/trees/master?recursive=1

- Chocolatey (92%):

```sh
choco install Tomcat
```

  Evidence: Chocolatey community package catalog: Tomcat from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','timberwinr'

## Package facts

- **Package key:** brew:tomcat@10
- **Package manager:** Homebrew
- **Package manager page:** <https://formulae.brew.sh/formula/tomcat@10>
- **Version:** 10.1.57
- **Source summary:** Implementation of Java Servlet and JavaServer Pages
- **Homepage:** <https://tomcat.apache.org/>
- **Repository:** <https://github.com/apache/tomcat>
- **Upstream docs:** <https://tomcat.apache.org/>
- **License:** Apache-2.0
- **Source archive:** <https://www.apache.org/dyn/closer.lua?path=tomcat/tomcat-10/v10.1.57/bin/apache-tomcat-10.1.57.tar.gz>
- **Last updated:** 2026-07-07T20:34:54Z
- **Generated:** 2026-07-08T18:08:21+00:00

## Dependencies

- openjdk

## Install behavior

- Post-install hook: not defined
- Service: declared
- Caveats: Configuration files: $HOMEBREW_PREFIX/etc/tomcat@10
- Bottle: available on all

## Freshness

- Page generated: 2026-07-08
- Package-manager version: 10.1.57
- Package-manager updated: 2026-07-07
- Local data: ok
- Upstream repository: https://tomcat.apache.org/
- info: Release/tag comparison is only available for GitHub repositories.
## Project history and usage

Apache Tomcat 10 is the Jakarta EE-era Tomcat line. In package-manager terms, `tomcat@10` is valuable because it pins users to the Tomcat 10 family rather than the newest major Tomcat, preserving the Servlet/Jakarta API level expected by applications.

### Project history

Tomcat 10.0.x built on Tomcat 9.0.x and implemented the Jakarta EE 9 generation of APIs: Servlet 5.0, JSP/Jakarta Pages 3.0, EL 4.0, WebSocket 2.0, and Authentication 2.0. Apache's migration guide calls out the central break from Tomcat 9: specification packages changed from `javax.*` to `jakarta.*`, requiring recompilation or migration of applications.

Tomcat 10.1.x then built on Tomcat 10.0.x and implements the Jakarta EE 10 generation: Servlet 6.0, Pages 3.1, EL 5.0, WebSocket 2.1, and Authentication 3.0. Apache's version matrix lists Tomcat 10.1.x as a current supported line and Tomcat 10.0.x as superseded, with 10.0.27 as the final 10.0 release.

### Adoption history

Tomcat 10 adoption is tied to the Java EE to Jakarta EE transition. Apache's homepage warns that applications running on Tomcat 9 and earlier do not run on Tomcat 10 without changes, and documents an automatic conversion path through `$CATALINA_BASE/webapps-javaee` plus the Apache Tomcat migration tool for Jakarta EE.

The input package metadata shows why package managers keep an explicit Tomcat 10 identity: Homebrew uses `tomcat@10`, Arch uses `tomcat10`, Scoop has `versions/tomcat10`, and Debian/Ubuntu expose Tomcat 10 embedding packages. That split lets users install a supported Jakarta EE 10-era container without accidentally jumping to a later major line.

### How it is used

Users install Tomcat 10 to run Jakarta Servlet/Jakarta Pages applications, test migrations from Tomcat 9, and host web apps that have already moved to `jakarta.*` APIs. The same operational model remains: `catalina` starts and manages the server, while `$CATALINA_BASE/conf/server.xml`, `catalina.properties`, and `tomcat-users.xml` hold core configuration and local user credentials.

### Why package nerds care

For package nerds, `tomcat@10` is a versioned formula that encodes a major compatibility boundary. It is not merely an older Tomcat: it represents the Jakarta namespace migration, Java runtime floor changes, branch tracking for 10.1.x, and the need to keep application-server packages installable by API generation.

### Timeline

- Tomcat 10.0.x: Apache documents the Jakarta namespace migration from `javax.*` to `jakarta.*`.
- 2022: Tomcat 10.0.x reached end of life on 2022-10-31.
- 2026: Apache lists Tomcat 10.1.56 as the latest supported Tomcat 10.1.x release and documents Java 11 or later for 10.1.x.

### Related projects

- The official source page lists the same `tomcat.git` repository for Tomcat 10.1.x development, and related projects include the Apache Tomcat migration tool for Jakarta EE, Tomcat Native, Tomcat Connectors, Taglibs, and the Tomcat Maven Plugin.

### Sources

- <https://tomcat.apache.org/>
- <https://tomcat.apache.org/migration-10.1.html>
- <https://tomcat.apache.org/migration-10.html>
- <https://tomcat.apache.org/source.html>
- <https://tomcat.apache.org/whichversion.html>
- source_facts.package-manager


## Security Notes

No matching local secret-handling manifest was found for tomcat@10. Nucleus package metadata is still published here so future coverage has a stable package URL.



## Configuration and credential file locations

These source-backed paths show where this package keeps local settings or durable credentials. Automic Vault can use them as review targets for secret scanning, migration, and command approval.


## Configuration files

- Unix: $CATALINA_BASE/conf/server.xml, $CATALINA_BASE/conf/catalina.properties, $CATALINA_BASE/conf/tomcat-users.xml

## Credential files

- Unix: $CATALINA_BASE/conf/tomcat-users.xml
## Source Database Details

- **Source Database:** Homebrew formula API
- **Tap:** homebrew/core
- **Full Name:** tomcat@10
- **Version Scheme:** 0
- **Revision:** 0
- **Bottle Stable Root URL:** <https://ghcr.io/v2/homebrew/core>
- **Deprecated:** no
- **Disabled:** no
- **Keg Only:** yes
- **URL Keys:** stable

## Other Package-Manager Records

- Debian apt - libtomcat10-embed-java - 10.1.52-1~deb13u1: package manager index match | Debian stable package indexes: libtomcat10-embed-java from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Apache Tomcat 10 - Servlet and JSP engine -- embed libraries | http://tomcat.apache.org
- Debian apt - libtomcat10-java - 10.1.52-1~deb13u1: package manager index match | Debian stable package indexes: libtomcat10-java from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Apache Tomcat 10 - Servlet and JSP engine -- core libraries | http://tomcat.apache.org
- Debian apt - tomcat10 - 10.1.52-1~deb13u1: package manager index match | Debian stable package indexes: tomcat10 from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Apache Tomcat 10 - Servlet and JSP engine | http://tomcat.apache.org
- Debian apt - tomcat10-admin - 10.1.52-1~deb13u1: package manager index match | Debian stable package indexes: tomcat10-admin from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Apache Tomcat 10 - Servlet and JSP engine -- admin web applications | http://tomcat.apache.org
- Debian apt - tomcat10-common - 10.1.52-1~deb13u1: package manager index match | Debian stable package indexes: tomcat10-common from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Apache Tomcat 10 - Servlet and JSP engine -- common files | http://tomcat.apache.org
- Debian apt - tomcat10-docs - 10.1.52-1~deb13u1: package manager index match | Debian stable package indexes: tomcat10-docs from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Apache Tomcat 10 - Servlet and JSP engine -- documentation | http://tomcat.apache.org
- Debian apt - tomcat10-examples - 10.1.52-1~deb13u1: package manager index match | Debian stable package indexes: tomcat10-examples from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Apache Tomcat 10 - Servlet and JSP engine -- example web applications | http://tomcat.apache.org
- Debian apt - tomcat10-user - 10.1.52-1~deb13u1: package manager index match | Debian stable package indexes: tomcat10-user from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Apache Tomcat 10 - Servlet and JSP engine -- tools to create user instances | http://tomcat.apache.org
- Ubuntu apt - libtomcat10-embed-java - 10.1.16-1: package manager index match | Ubuntu 24.04 LTS package indexes: libtomcat10-embed-java from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Apache Tomcat 10 - Servlet and JSP engine -- embed libraries | http://tomcat.apache.org
- Ubuntu apt - libtomcat10-java - 10.1.16-1: package manager index match | Ubuntu 24.04 LTS package indexes: libtomcat10-java from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Apache Tomcat 10 - Servlet and JSP engine -- core libraries | http://tomcat.apache.org
- Ubuntu apt - tomcat10 - 10.1.16-1: package manager index match | Ubuntu 24.04 LTS package indexes: tomcat10 from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Apache Tomcat 10 - Servlet and JSP engine | http://tomcat.apache.org
- Ubuntu apt - tomcat10-admin - 10.1.16-1: package manager index match | Ubuntu 24.04 LTS package indexes: tomcat10-admin from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Apache Tomcat 10 - Servlet and JSP engine -- admin web applications | http://tomcat.apache.org
- Ubuntu apt - tomcat10-common - 10.1.16-1: package manager index match | Ubuntu 24.04 LTS package indexes: tomcat10-common from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Apache Tomcat 10 - Servlet and JSP engine -- common files | http://tomcat.apache.org
- Ubuntu apt - tomcat10-docs - 10.1.16-1: package manager index match | Ubuntu 24.04 LTS package indexes: tomcat10-docs from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Apache Tomcat 10 - Servlet and JSP engine -- documentation | http://tomcat.apache.org
- Ubuntu apt - tomcat10-examples - 10.1.16-1: package manager index match | Ubuntu 24.04 LTS package indexes: tomcat10-examples from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Apache Tomcat 10 - Servlet and JSP engine -- example web applications | http://tomcat.apache.org
- Ubuntu apt - tomcat10-user - 10.1.16-1: package manager index match | Ubuntu 24.04 LTS package indexes: tomcat10-user from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Apache Tomcat 10 - Servlet and JSP engine -- tools to create user instances | http://tomcat.apache.org


## Related links

- [Language runtime packages](https://www.automicvault.com/pkg/language-runtime-packages/) - Matched language runtime, compiler, or interpreter metadata.
- [Networking and protocol packages](https://www.automicvault.com/pkg/networking-protocol-tools/) - Matched network, protocol, or remote-service metadata.
- [openjdk](https://www.automicvault.com/pkg/brew/openjdk/) - Runtime dependency declared by Homebrew.
- [tomcat](https://www.automicvault.com/pkg/brew/tomcat/) - Package name indicates the same formula family.
- [tomcat@9](https://www.automicvault.com/pkg/brew/tomcat-9/) - Package name indicates the same formula family.
- [tomcat-native](https://www.automicvault.com/pkg/brew/tomcat-native/) - Package names and metadata indicate a similar tool family. Shared terms: openjdk, tomcat.

## Combined YAML source

View the package source record on GitHub. [combined/tomcat@10.yml](https://github.com/automic-vault/db/blob/main/combined/tomcat@10.yml)


## Sources

- Nucleus package database
- package-page enrichment
- curated configuration and credential file locations
- curated package history
- package version freshness
- package relationship graph
- external package-manager database matches
- cross-ecosystem install command graph
