Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions install/elasticsearch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,6 @@ Download and Add the Public Signing Key

$ sudo apt-get install apt-transport-https

Add repo key:

.. code-block:: console

$ curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch | \
gpg --dearmor | sudo tee /usr/share/keyrings/elasticsearch-keyring.gpg \
&& sudo chmod 644 /usr/share/keyrings/elasticsearch-keyring.gpg

.. group-tab:: OpenSUSE / SLES

.. code-block:: console
Expand All @@ -52,6 +44,16 @@ Add the Repository

.. group-tab:: Ubuntu / Debian

Add repo key:

.. code-block:: console

$ curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch | \
gpg --dearmor | sudo tee /usr/share/keyrings/elasticsearch-keyring.gpg \
&& sudo chmod 644 /usr/share/keyrings/elasticsearch-keyring.gpg

Add repo:

.. code-block:: console

$ echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/8.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-8.x.list
Expand Down