Installation Elasticsearch (7.x)

A Research Data Repository Service for Managing Metadata Documents based on JSON or XML.

Installation Elasticsearch (7.x)


NOTE
Only tested with elasticsearch 7.x and 8.x.

You may need to install the apt-transport-https package on Debian before proceeding:

root@server:~# apt-get install apt-transport-https

Download and install the public signing key:

root@server:~# wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg

Save the repository definition to /etc/apt/sources.list.d/elastic-7.x.list:

root@server:~# echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/7.x/apt stable main" | tee /etc/apt/sources.list.d/elastic-7.x.list

Final step: Install elasticsearch from registered repository

root@server:~# apt-get update && apt-get install elasticsearch
« PREVIOUS NEXT »