Created page with "{{DISPLAYTITLE:Elasticsearch on Linux}} __TOC__ {{Messagebox|boxtype=note|Note text=Elasticsearch is a prerequisite for the operation of Advanced Search. The steps listed her..." Tag: 2017 source edit |
m (username removed) (log details removed) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:Elasticsearch on Linux}} | {{DISPLAYTITLE:Elasticsearch on Linux}} | ||
{{BSVersion|bsvTo=4.3|bsvFeature=OpenSearch|info=Newer versions of BlueSpice 4 support [[Setup:Installation_Guide/System_Preparation/Linux/OpenSearch|OpenSearch]].}} | |||
__TOC__ | __TOC__ | ||
Line 30: | Line 32: | ||
==Next step== | ==Next step== | ||
If you have completed all steps successfully, you can proceed to the next step "[[Setup:Installation Guide/System Preparation/Linux/ | If you have completed all steps successfully, you can proceed to the next step "[[Setup:Installation Guide/System Preparation/Linux/Python|Python]]". | ||
[[en:{{FULLPAGENAME}}]] | [[en:{{FULLPAGENAME}}]] | ||
[[de:Setup:Installationsanleitung/Systemvorbereitung/Linux/Elasticsearch]] | [[de:Setup:Installationsanleitung/Systemvorbereitung/Linux/Elasticsearch]] |
Latest revision as of 10:42, 16 May 2025
Archived!This documentation is obsolete and no longer applies to the current BlueSpice version.
Adding the package sources
Elasticsearch is not included in the package manager on Debian. However, the manufacturer provides a repository for the software. Add it with the following commands to your Debian installation. Prerequisite is that you have installed the program "gnupg" (apt install gnupg
).
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | apt-key add -; \ echo "deb https://artifacts.elastic.co/packages/6.x/apt stable main" > /etc/apt/sources.list.d/elastic-6.x.list
Installing Elasticsearch
The subsequent installation of Elasticsearch will guide you through these commands.
apt update; \ apt install elasticsearch; \ apt clean
Installing ingest-attachment
For the advanced search in BlueSpice you need the plugin "ingest-attachment" for Elasticsearch. This Install it with the following command:
/usr/share/elasticsearch/bin/elasticsearch-plugin install -b ingest-attachment
Start Elasticsearch and add it to startup
Add the Elasticsearch to startup and then start the service:
systemctl enable elasticsearch; \ service elasticsearch start
Next step
If you have completed all steps successfully, you can proceed to the next step "Python".