Elasticsearch (Linux): Unterschied zwischen den Versionen
(11 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 4: | Zeile 4: | ||
== Installation == | == Installation == | ||
=== Raspbian (ARM-Prozessor) === | |||
Zuerst das Paket <code>apt-transport-https</code> installieren: | |||
Paket <code>apt-transport-https</code> installieren: | |||
<pre> | <pre> | ||
Zeile 16: | Zeile 12: | ||
</pre> | </pre> | ||
Auf [https://www.elastic.co/de/downloads/elasticsearch-no-jdk https://www.elastic.co/de/downloads/elasticsearch-no-jdk] die aktuelle Version suchen und herunterladen: | |||
<pre> | <pre> | ||
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.12.1-no-jdk-amd64.deb | |||
</pre> | </pre> | ||
Da bei den Standardpaketen JDK dabei ist und diese Plattformabhängig ist, muss die version mit <code>-no-jdk</code> verwendet werden. | |||
<pre> | <pre> | ||
sudo dpkg -i elasticsearch-7.12.1-no-jdk-amd64.deb | |||
</pre> | </pre> | ||
{{note|Es kommt noch eine Fehlermeldung "package architecture (amd64) does not match system (armhf)" beim Installieren.}} | |||
== Docker == | == Docker == | ||
Zeile 34: | Zeile 33: | ||
== Links == | == Links == | ||
[https://www.elastic.co/de/downloads/elasticsearch https://www.elastic.co/de/downloads/elasticsearch] | |||
[https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html] | [https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html 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://discuss.elastic.co/t/elasticsearch-7-x-support-for-arm64-raspberry-pi-4-b/187976] | |||
[https://www.raspberrypi.org/forums/viewtopic.php?t=268432 https://www.raspberrypi.org/forums/viewtopic.php?t=268432] | |||
Zurück zu [[Ubuntu#E (Server)|Ubuntu]] | Zurück zu [[Ubuntu#E (Server)|Ubuntu]] |
Aktuelle Version vom 23. Mai 2021, 10:20 Uhr
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