Elasticsearch: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 11: Line 11:
shasum -a 512 -c elasticsearch-7.15.2-x86_64.rpm.sha512
shasum -a 512 -c elasticsearch-7.15.2-x86_64.rpm.sha512
sudo rpm --install elasticsearch-7.15.2-x86_64.rpm
sudo rpm --install elasticsearch-7.15.2-x86_64.rpm
</syntaxhighlight>
* Enable start at boot. As root:
<syntaxhighlight lang='bash'>
systemctl daemon-reload
systemctl enable elasticsearch.service
</syntaxhighlight>
</syntaxhighlight>

Revision as of 23:48, 20 November 2021

Internal

Overview

Installation

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.2-x86_64.rpm
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.2-x86_64.rpm.sha512
shasum -a 512 -c elasticsearch-7.15.2-x86_64.rpm.sha512
sudo rpm --install elasticsearch-7.15.2-x86_64.rpm
  • Enable start at boot. As root:
systemctl daemon-reload
systemctl enable elasticsearch.service