This version is approved.
Difference between revisions of "Setup:Installation Guide/System Preparation/Linux/Elasticsearch"
< Setup:Installation Guide | System Preparation | LinuxReturn to history page
← Setup:Installation Guide/System Preparation/Linux/Elasticsearch
← Setup:Installation Guide/System Preparation/Linux/Elasticsearch
[quality revision] | [quality revision] |
m (Text replacement - "[[en:{{PAGENAME}}]]" to "[[en:{{FULLPAGENAME}}]]") |
(Tag: Visual edit) |
Contents
Elasticsearch is a prerequisite for the operation of Advanced Search. The steps listed here are optional and only required if you plan to use them in your BlueSpice installation. |
Adding the package sources[edit | edit source]
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[edit | edit source]
The subsequent installation of Elasticsearch will guide you through these commands.
apt update; \ apt install elasticsearch; \ apt clean
Installing ingest-attachment[edit | edit source]
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[edit | edit source]
Add the Elasticsearch to startup and then start the service:
systemctl enable elasticsearch; \ service elasticsearch start
Next step[edit | edit source]
If you have completed all steps successfully, you can proceed to the next step "Node.js".
{{DISPLAYTITLE:Elasticsearch on Linux}} __TOC__ {{Template:Optional|text=Elasticsearch is a prerequisite for the operation of Advanced Search. The steps listed here are optional and only required if you plan to use them in your BlueSpice installation.}} ==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" (<code>apt install gnupg</code>). <pre>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 </pre> ==Installing Elasticsearch== The subsequent installation of Elasticsearch will guide you through these commands. <pre>apt update; \ apt install elasticsearch; \ apt clean </pre> ==Installing ingest-attachment== For the advanced search in BlueSpice you need the plugin "ingest-attachment" for Elasticsearch. This Install it with the following command: <pre>/usr/share/elasticsearch/bin/elasticsearch-plugin install -b ingest-attachment</pre> ==Start Elasticsearch and add it to startup== Add the Elasticsearch to startup and then start the service: <pre>systemctl enable elasticsearch; \ service elasticsearch start</pre> ==Next step== If you have completed all steps successfully, you can proceed to the next step "[[Setup:Installation Guide/System Preparation/Linux/Node.js |Node.js]]". [[en:{{FULLPAGENAME}}]] [[de:Setup:Installationsanleitung/Systemvorbereitung/Linux/Elasticsearch]]
Line 1: | Line 1: | ||
+ | {{DISPLAYTITLE:Elasticsearch on Linux}} | ||
__TOC__ | __TOC__ | ||