Elasticsearch (Linux): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 4: Zeile 4:
== Installation ==
== Installation ==


Öffentlichen signierten Schlüssel herunterladen und installieren:
Auf [https://www.elastic.co/de/downloads/elasticsearch https://www.elastic.co/de/downloads/elasticsearch] die aktuelle Version suchen und herunterladen:
 
<pre>
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
</pre>
 
Paket <code>apt-transport-https</code> installieren:
 
<pre>
sudo apt-get update && sudo apt-get install apt-transport-https
</pre>
 
Repository-Definition nach </code>/etc/apt/sources.list.d/elastic-5.x.list</code> speichern:
 
<pre>
echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-7.x.list
</pre>


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


== Docker ==
== Docker ==

Version vom 23. Mai 2021, 10:56 Uhr

Noch in Bearbeitung


Installation

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

wget https://artifacts.elastic.co/downloads/elasticsearch/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.raspberrypi.org/forums/viewtopic.php?t=268432


Zurück zu Ubuntu