This is an automated email from the ASF dual-hosted git repository. shuber pushed a commit to branch opensearch-persistence in repository https://gitbox.apache.org/repos/asf/unomi.git
commit 88522d6ef7c1881c8a67f4924f405ee067856fb2 Author: Serge Huber <[email protected]> AuthorDate: Thu Dec 5 09:31:06 2024 +0100 Minor Quickstart refactoring --- manual/src/main/asciidoc/5-min-quickstart.adoc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/manual/src/main/asciidoc/5-min-quickstart.adoc b/manual/src/main/asciidoc/5-min-quickstart.adoc index e05ee75e7..a25a45dd4 100644 --- a/manual/src/main/asciidoc/5-min-quickstart.adoc +++ b/manual/src/main/asciidoc/5-min-quickstart.adoc @@ -51,9 +51,14 @@ Try accessing https://localhost:9443/cxs/cluster with username/password: karaf/k 1) Install JDK 11 (https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) and make sure you set the JAVA_HOME variable https://docs.oracle.com/cd/E19182-01/820-7851/inst_cli_jdk_javahome_t/ (see our <<JDK compatibility,Getting Started>> guide for more information on JDK compatibility) -2) Download ElasticSearch here : https://www.elastic.co/downloads/past-releases/elasticsearch-7-17-5 (please <strong>make sure</strong> you use the proper version : 7.17.5) +2) Download ElasticSearch here : https://www.elastic.co/downloads/past-releases/elasticsearch-7-17-5 (please *make sure* you use the proper version : 7.17.5) -3) Uncompress it and change the `config/elasticsearch.yml` to include the following config : <code>cluster.name: contextElasticSearch</code> +3) Uncompress it and change the `config/elasticsearch.yml` to include the following config : + +[source,yaml] +---- +cluster.name: contextElasticSearch +---- 4) Launch ElasticSearch using : `bin/elasticsearch`
