From 785f58e26d86d4c7bbc471ec1daa1d66210d451f Mon Sep 17 00:00:00 2001 From: jlecour Date: Mon, 12 Nov 2018 15:07:38 +0100 Subject: [PATCH] ajout de l'info sur la version --- HowtoElasticsearch.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/HowtoElasticsearch.md b/HowtoElasticsearch.md index 773d6e98..4272d7c4 100644 --- a/HowtoElasticsearch.md +++ b/HowtoElasticsearch.md @@ -20,6 +20,25 @@ Vu le développement actif d'Elasticsearch, nous préconisons l'installation des # apt install elasticsearch ~~~ +Infos basiques sur le cluster (nom, version, etc.) : + +~~~ +$ curl 127.0.0.1:9200 +{ + "name" : "my_node", + "cluster_name" : "my_cluster", + "cluster_uuid" : "RwTUfzym2fTq-URwSNGaeg", + "version" : { + "number" : "5.6.6", + "build_hash" : "7d99d36", + "build_date" : "2018-01-09T23:55:47.880Z", + "build_snapshot" : false, + "lucene_version" : "6.6.1" + }, + "tagline" : "You Know, for Search" +} +~~~ + ### Java 1.8 Elasticsearch 5.x nécessite Java 1.8. Pour Jessie, il faut installer la machine virtuelle Java depuis les backports.