Elasticsearch (Linux): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 12: Zeile 12:
</pre>
</pre>


Auf [https://www.elastic.co/de/downloads/elasticsearch https://www.elastic.co/de/downloads/elasticsearch] die aktuelle Version suchen und herunterladen:
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-arm64.deb
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-arm64.deb
sudo dpkg -i elasticsearch-7.12.1-no-jdk-amd64.deb
</pre>
</pre>



Version vom 23. Mai 2021, 11:05 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

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://www.raspberrypi.org/forums/viewtopic.php?t=268432


Zurück zu Ubuntu