# Installer tomcat@10 avec Homebrew, apt, pacman, zypper, scoop, dnf, Nix, chocolatey

Consultez les chemins d'installation, exécutables, métadonnées et notes de sécurité de tomcat@10 pour les workflows d'agents IA.

## installation

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

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

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

  Preuve: local Homebrew formula metadata

### Linux

- Debian apt (92%):

```sh
sudo apt install tomcat10
```

  Preuve: Debian stable package indexes: tomcat10 from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- pacman (92%):

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

  Preuve: 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
```

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

- dnf (92%):

```sh
sudo dnf install tomcat
```

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

- Nix (92%):

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

  Preuve: 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
```

  Preuve: 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
```

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

## Faits du paquet

- **Clé du paquet:** brew:tomcat@10
- **Gestionnaire de paquets:** Homebrew
- **Page du gestionnaire de paquets:** <https://formulae.brew.sh/formula/tomcat@10>
- **Version:** 10.1.57
- **Résumé source:** Implementation of Java Servlet and JavaServer Pages
- **Page d'accueil:** <https://tomcat.apache.org/>
- **Docs amont:** <https://tomcat.apache.org/>
- **Licence:** Apache-2.0
- **Archive source:** <https://www.apache.org/dyn/closer.lua?path=tomcat/tomcat-10/v10.1.57/bin/apache-tomcat-10.1.57.tar.gz>
- **Dernière mise à jour:** 2026-07-07T20:34:54Z
- **Généré:** 2026-08-04T22:13:35+00:00

## Dépendances

- openjdk

## Comportement d'installation

- hook post-installation: non défini
- Service: declared
- Précautions: Configuration files: $HOMEBREW_PREFIX/etc/tomcat@10
- Bouteille: disponible sur all

## Version et fraîcheur

- page générée: 2026-08-04
- version du gestionnaire: 10.1.57
- gestionnaire mis à jour: 2026-07-07
- données locales: OK
- dépôt amont: https://tomcat.apache.org/
- info: Release/tag comparison is only available for GitHub repositories.
## Historique du projet et usages

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.

### Historique du projet

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.

### Historique d'adoption

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.

### Modes d'utilisation

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.

### Pourquoi les passionnés de paquets s'y intéressent

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.

### Chronologie

- 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


## Notes de sécurité

Aucun manifest local de gestion des secrets correspondant n'a été trouvé pour tomcat@10. Les métadonnées de paquet restent publiées ici afin que la couverture future dispose d'une URL stable.



## 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
## Détails de la base source

- **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

## Autres enregistrements de gestionnaires de paquets

- Debian apt - libtomcat10-embed-java - 10.1.55-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.55-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.55-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.55-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.55-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.55-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.55-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.55-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


## Liens liés

- [Cloud CLI packages](https://pkg.so/fr/cloud-clis/) - Belongs to a cloud or infrastructure command family.
- [Terminal utility packages](https://pkg.so/fr/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Language runtime packages](https://pkg.so/fr/language-runtime-packages/) - Matched language runtime, compiler, or interpreter metadata.
- [Networking and protocol packages](https://pkg.so/fr/networking-protocol-tools/) - Matched network, protocol, or remote-service metadata.
- [openjdk](https://pkg.so/fr/brew/openjdk/) - Runtime dependency declared by Homebrew.
- [tomcat](https://pkg.so/fr/brew/tomcat/) - Package name indicates the same formula family.
- [tomcat@9](https://pkg.so/fr/brew/tomcat-9/) - Package name indicates the same formula family.
- [openliberty-webprofile8](https://pkg.so/fr/brew/openliberty-webprofile8/) - Shares pkgdb curated category or tags: application-server, cli, cloud-infrastructure, jakarta-ee, java.
- [tomee-plume](https://pkg.so/fr/brew/tomee-plume/) - Shares pkgdb curated category or tags: application-server, cli, cloud-infrastructure, jakarta-ee, java.
- [openliberty-webprofile9](https://pkg.so/fr/brew/openliberty-webprofile9/) - Shares pkgdb curated category or tags: application-server, cli, cloud-infrastructure, jakarta-ee, java.
- [openliberty-microprofile4](https://pkg.so/fr/brew/openliberty-microprofile4/) - Shares pkgdb curated category or tags: application-server, cli, cloud-infrastructure, java.
- [openliberty-jakartaee8](https://pkg.so/fr/brew/openliberty-jakartaee8/) - Shares pkgdb curated category or tags: application-server, cli, cloud-infrastructure, java.
- [openliberty-jakartaee9](https://pkg.so/fr/brew/openliberty-jakartaee9/) - Shares pkgdb curated category or tags: application-server, cli, cloud-infrastructure, java.
- [cdktf](https://pkg.so/fr/brew/cdktf/) - Shares pkgdb curated category or tags: cli, cloud-infrastructure, java.

## Combined YAML source

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


## Sources

- pkg.so package database
- package-page enrichment
- curated configuration and credential file locations
- curated package history
- package version freshness
- pkgdb category and tag curation
- package relationship graph
- external package-manager database matches
- cross-ecosystem install command graph
