Elasticsearch (Linux)

Aus Tutorials
Zur Navigation springen Zur Suche springen

Noch in Bearbeitung


Installation

Raspbian (ARM-Prozessor)

Zuerst das Paket apt-transport-https installieren:

sudo apt-get update && sudo apt-get install apt-transport-https

Auf https://www.elastic.co/de/downloads/elasticsearch-no-jdk die aktuelle Version suchen und herunterladen:

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.12.1-no-jdk-amd64.deb

Da bei den Standardpaketen JDK dabei ist und diese Plattformabhängig ist, muss die version mit -no-jdk verwendet werden.

sudo dpkg -i elasticsearch-7.12.1-no-jdk-amd64.deb

Es kommt noch eine Fehlermeldung "package architecture (amd64) does not match system (armhf)" beim Installieren.

Docker

Noch nicht getestet

https://hub.docker.com/r/dimdm/elasticsearch/tags?page=1&ordering=last_updated

Links

https://www.elastic.co/de/downloads/elasticsearch

https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html

https://discuss.elastic.co/t/elasticsearch-7-x-support-for-arm64-raspberry-pi-4-b/187976

https://www.raspberrypi.org/forums/viewtopic.php?t=268432


Zurück zu Ubuntu