# Installer tika avec Homebrew, Nix, apt

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

## installation

```sh
sudo av install brew:tika
```

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

```sh
brew install tika
```

  Preuve: local Homebrew formula metadata

### Linux

- Nix (92%):

```sh
nix profile install nixpkgs#tika
```

  Preuve: nixpkgs package indexes: pkgs/by-name/ti/tika/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- Ubuntu apt (92%):

```sh
sudo apt install libtika-java
```

  Preuve: Ubuntu 24.04 LTS package indexes: libtika-java from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz

## Faits du paquet

- **Clé du paquet:** brew:tika
- **Gestionnaire de paquets:** Homebrew
- **Page du gestionnaire de paquets:** <https://formulae.brew.sh/formula/tika>
- **Version:** 3.3.1
- **Résumé source:** Content analysis toolkit
- **Page d'accueil:** <https://tika.apache.org/>
- **Dépôt:** <https://github.com/apache/tika>
- **Docs amont:** <https://tika.apache.org/3.3.0/api>
- **Licence:** Apache-2.0
- **Archive source:** <https://www.apache.org/dyn/closer.lua?path=tika/3.3.1/tika-app-3.3.1.jar>
- **Dernière mise à jour:** 2026-05-26T16:55:34Z
- **Généré:** 2026-07-08T07:18:31+00:00

## exécutables

- tika (cli)
- tika-rest-server (cli)
- tika (alias)
- tika-rest-server (alias)

## Dépendances

- openjdk

## Comportement d'installation

- hook post-installation: non défini
- Service: declared
- Bouteille: disponible sur all

## Version et fraîcheur

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

Apache Tika is an Apache Software Foundation toolkit for detecting file types and extracting metadata and structured text content from documents using existing parser libraries. It is used both as a Java library and through command-line and server artifacts such as tika-app and tika-server.

### Historique du projet

Tika emerged from the Apache Lucene ecosystem and became its own Apache top-level project in April 2010. The official site records Tika 0.8 in November 2010 as its first release as a TLP and Tika 1.0 in November 2011, just in time for ApacheCon NA 2011.

The project evolved from a library for content detection and text extraction into a large document-processing platform. Official getting-started documentation describes core modules, standard parser packages, a runnable tika-app jar with GUI and command-line interface, a JAX-RS REST server, OSGi bundles, and tika-eval tooling.

The release history shows recurring expansion into new formats, parser integrations, server features, OCR, language detection, metadata handling, and security hardening. Examples include Tika 1.15 adding tika-eval and configurable encoding detectors, Tika 2.x refactoring parser modules and pipes, and Tika 3.x requiring newer Java while continuing parser and server development.

The current official roadmap has moved the ecosystem forward again: the README states Tika 2.x and Java 8 support reached end of life in April 2025, while the download page lists Apache Tika 3.3.1 as the stable release and a 4.0.0 alpha line as a preview.

### Historique d'adoption

Tika's adoption is tied to search, archives, digital forensics, records management, and large-scale document ingestion. The official site notes a 2010 ApacheCon talk on Tika use at NASA and in other Apache ecosystem projects, and it later records Apache Tika and Apache Solr as key technologies in analysis around the Panama Papers.

In package-manager terms, Tika is unusual because it is fundamentally a Java ecosystem project but is often installed as a command-line application or server. Homebrew's tika and tika-rest-server executables give shell users access to the same parsing engine without writing Java code.

Maven Central remains the natural adoption channel for Java applications, while package managers and runnable jars serve analysts, data engineers, and sysadmins who want document text extraction in scripts, ETL jobs, search indexing, or local experiments.

### Modes d'utilisation

The getting-started guide documents tika-app as a command-line utility for extracting text content and metadata from many file types, with flags for text, XHTML/XML, HTML, metadata JSON, recursive JSON, language detection, type detection, digest calculation, and embedded attachment extraction.

Tika is commonly used as a library when an application needs MIME detection or parser abstractions, as a standalone CLI when a user needs text or metadata on stdout, and as tika-server when teams want parsing over HTTP.

For package nerds, the tool is a dependable document-to-text bridge: install it, point it at PDFs, Office documents, archives, images, or email-like formats, and feed the extracted content into grep, search indexes, data pipelines, or audit tools.

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

Apache Tika is significant because it hides a large, fragile matrix of document formats and parser dependencies behind a stable package name. A small formula or package installs access to PDFBox, POI, media-type detection, metadata models, server endpoints, and many third-party parsers that would be fiddly to assemble by hand.

Its release notes are watched by maintainers because file parsers are security-sensitive and dependency-heavy. Package versions matter for Java requirements, parser behavior, CVEs, output format defaults, and whether users are on the 1.x, 2.x, 3.x, or preview 4.x line.

Tika is also a classic example of an enterprise Java tool that escaped into CLI culture: even users who never import org.apache.tika can use the packaged executable as a universal text extractor in shell workflows.

### Chronologie

- 2009: Official site lists early 0.3, 0.4, and 0.5 releases.
- April 2010: Apache Tika graduates to top-level project status.
- November 2010: Tika 0.8 becomes the first release as a TLP.
- November 2011: Tika 1.0 released.
- July 2021: Tika 2.0.0 released.
- September 2022: Tika 1.x branch reaches end of life.
- October 2024: Tika 3.0.0 released, with the 3.x branch requiring Java 11.
- April 2025: Tika 2.x and Java 8 support reach end of life.
- 2026: Tika 3.3.x stable releases and 4.0.0 alpha preview releases are documented on the official site.

### Related projects

- The official site places early Tika in the Lucene and Apache ecosystem and documents notable use with Apache Solr.
- Official documentation names parser and build dependencies across the Java ecosystem, including Maven, Jetty for tika-server, and parser libraries used by the standard parser package.

### Sources

- <https://github.com/apache/tika#readme - official README for project description, Java baseline, command-line quick start, Maven usage, and current branch notes.>
- <https://tika.apache.org/ - official homepage/news for TLP graduation, 0.x/1.x/2.x/3.x release history, NASA and Panama Papers notes, and EOL notices.>
- <https://tika.apache.org/3.3.0/gettingstarted.html - official getting-started guide for build artifacts, tika-app, tika-server, Maven dependencies, and CLI options.>
- <https://tika.apache.org/download.html - official download page for current stable and preview release packaging.>


## Notes de sécurité

broad file, network, media, or database tool signal. formula declares a Homebrew service.

- **Risque Geiger:** orange / moyen
- broad file, network, media, or database tool signal
- formula declares a Homebrew service

## Détails de la base source

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

## Autres enregistrements de gestionnaires de paquets

- Nix - tika: normalized package name match | nixpkgs package indexes: pkgs/by-name/ti/tika/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - libtika-java - 1.22-2: normalized package name match | Ubuntu 24.04 LTS package indexes: libtika-java from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Apache Tika - content analysis toolkit | http://tika.apache.org


## Liens liés

- [Secret-risk packages](https://www.automicvault.com/fr/pkg/secret-risk-packages/) - Has protected-tool coverage, approval-gate, or non-low Geiger security signals.
- [Terminal utility packages](https://www.automicvault.com/fr/pkg/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Text processing packages](https://www.automicvault.com/fr/pkg/text-processing-tools/) - Matched text, document, or structured-data processing metadata.
- [Language runtime packages](https://www.automicvault.com/fr/pkg/language-runtime-packages/) - Matched language runtime, compiler, or interpreter metadata.
- [openjdk](https://www.automicvault.com/fr/pkg/brew/openjdk/) - Runtime dependency declared by Homebrew.
- [alluxio](https://www.automicvault.com/fr/pkg/brew/alluxio/) - Shares av.db curated category or tags: cli, data, java.
- [carrot2](https://www.automicvault.com/fr/pkg/brew/carrot2/) - Shares av.db curated category or tags: cli, data, java.
- [derby](https://www.automicvault.com/fr/pkg/brew/derby/) - Shares av.db curated category or tags: cli, data, java.
- [djl-serving](https://www.automicvault.com/fr/pkg/brew/djl-serving/) - Shares av.db curated category or tags: cli, data, java.
- [geoserver](https://www.automicvault.com/fr/pkg/brew/geoserver/) - Shares av.db curated category or tags: cli, data, java.
- [h2](https://www.automicvault.com/fr/pkg/brew/h2/) - Shares av.db curated category or tags: cli, data, java.
- [hapi-fhir-cli](https://www.automicvault.com/fr/pkg/brew/hapi-fhir-cli/) - Shares av.db curated category or tags: cli, data, java.
- [hbase](https://www.automicvault.com/fr/pkg/brew/hbase/) - Shares av.db curated category or tags: cli, data, java.
- [mallet](https://www.automicvault.com/fr/pkg/brew/mallet/) - Both packages touch the same language runtime or ecosystem. Shared terms: cli, data, java, openjdk, toolkit.
- [stanford-corenlp](https://www.automicvault.com/fr/pkg/brew/stanford-corenlp/) - Both packages touch the same language runtime or ecosystem. Shared terms: analysis, cli, data, java, openjdk.

## Combined YAML source

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


## Sources

- Nucleus package database
- Geiger risk classifier
- package-page enrichment
- curated package history
- package version freshness
- av.db category and tag curation
- package relationship graph
- external package-manager database matches
- cross-ecosystem install command graph
