From 74a3dbd8050805fb13aedf79c26454ca99abbaa0 Mon Sep 17 00:00:00 2001 From: Lorenzo De Pasquale <40490601+LorenzoDePasquale@users.noreply.github.com> Date: Thu, 14 Oct 2021 09:30:56 +0200 Subject: [PATCH] Minor improvements to the Indexing engine section Minor change to make more clear the Indexing engine section and make it consistent with the subsequent File storage section --- .../installation/step-by-step-guide.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/thehive/installation-and-configuration/installation/step-by-step-guide.md b/docs/thehive/installation-and-configuration/installation/step-by-step-guide.md index b2e589d1..6a1f0b32 100644 --- a/docs/thehive/installation-and-configuration/installation/step-by-step-guide.md +++ b/docs/thehive/installation-and-configuration/installation/step-by-step-guide.md @@ -181,8 +181,13 @@ Starting from TheHive 4.1.0, a solution to store data indexes is required. These Create a folder dedicated to host indexes for TheHive: ```bash - mkdir /opt/thp/thehive/index - chown thehive:thehive -R /opt/thp/thehive/index + mkdir -p /opt/thp/thehive/index + ``` + + Later, after having installed TheHive, ensure the user `thehive` owns the path chosen for storing the indexes: + + ``` + chown -R thehive:thehive /opt/thp/thehive/index ``` === "Elasticsearch"