{"id":471,"date":"2021-12-29T09:18:26","date_gmt":"2021-12-29T08:18:26","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/2021\/12\/29\/elastic-elk-stack-set-up-elasticsearch\/"},"modified":"2022-04-06T08:26:18","modified_gmt":"2022-04-06T06:26:18","slug":"elastic-elk-stack-set-up-elasticsearch","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/","title":{"rendered":"Elastic (ELK) Stack &#8211; Set up Elasticsearch"},"content":{"rendered":"<p>After we made a <a href=\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-get-started\/\" rel=\"noopener\" target=\"_blank\">global overview on Elastic Stack<\/a> and we went more in deep in <a href=\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-elasticsearch-terminologies\/\" rel=\"noopener\" target=\"_blank\">Elasticsearch terminologies<\/a>. This third blog in the Elastic Stack series will allow you to know how to set up Elasticsearch, from Downloading, Installing, Configuring, and Starting.<br \/>\n<!--more--><\/p>\n<h2>Supported platforms<\/h2>\n<p>At the beginning of any installation you have to check the compatibility matrix from operating systems and JVMs, this matrix is available <a href=\"https:\/\/www.elastic.co\/support\/matrix\" rel=\"noopener\" target=\"_blank\">here<\/a>! Elasticsearch is tested on the listed platforms, but it is possible that it will work on other platforms too.<\/p>\n<h2>Host Elasticsearch<\/h2>\n<p>It is recommended to run Elasticsearch on a dedicated host or as a primary service. Several Elasticsearch features, such as automatic JVM heap sizing, assume it\u2019s the only resource-intensive application on the host or container.<br \/>\nYou can run Elasticsearch on your own hardware or use hosted Elasticsearch Service that is available on AWS, GCP, and Azure!<\/p>\n<h2>Download Elasticsearch<\/h2>\n<p>As I will install Elasticsearch myself, I need to download it, Elasticsearch is provided in different package formats depending on the OS.<br \/>\nIn my case, I will download the <a href=\"https:\/\/www.elastic.co\/downloads\/elasticsearch\" rel=\"noopener\" target=\"_blank\">latest stable version<\/a> of tar.gz archives that are available for installation on any Linux distribution and MacOS.<br \/>\nThe Linux archive for Elasticsearch v7.16.2 (latest version today) can be downloaded as follows:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&#x5B;elastic@vmelastic app]$ wget https:\/\/artifacts.elastic.co\/downloads\/elasticsearch\/elasticsearch-7.16.2-linux-x86_64.tar.gz\n--2021-12-28 13:49:54--  https:\/\/artifacts.elastic.co\/downloads\/elasticsearch\/elasticsearch-7.16.2-linux-x86_64.tar.gz\n... connected.\nProxy request sent, awaiting response... 200 OK\nLength: 343664171 (328M) &#x5B;application\/x-gzip]\nSaving to: `elasticsearch-7.16.2-linux-x86_64.tar.gz'\n\n100%&#x5B;===================================================================================================================================================&gt;] 343,664,171 35.0M\/s   in 9.7s\n\n2021-12-28 13:50:04 (33.8 MB\/s) - `elasticsearch-7.16.2-linux-x86_64.tar.gz' saved &#x5B;343664171\/343664171]\n\n&#x5B;elastic@vmelastic app]$ wget https:\/\/artifacts.elastic.co\/downloads\/elasticsearch\/elasticsearch-7.16.2-linux-x86_64.tar.gz.sha512\n--2021-12-28 13:50:04--  https:\/\/artifacts.elastic.co\/downloads\/elasticsearch\/elasticsearch-7.16.2-linux-x86_64.tar.gz.sha512\n... connected.\nProxy request sent, awaiting response... 200 OK\nLength: 171 &#x5B;binary\/octet-stream]\nSaving to: `elasticsearch-7.16.2-linux-x86_64.tar.gz.sha512'\n\n100%&#x5B;===================================================================================================================================================&gt;] 171         --.-K\/s   in 0s\n\n2021-12-28 13:50:04 (23.5 MB\/s) - `elasticsearch-7.16.2-linux-x86_64.tar.gz.sha512' saved &#x5B;171\/171]\n\n&#x5B;elastic@vmelastic app]$ shasum -a 512 -c elasticsearch-7.16.2-linux-x86_64.tar.gz.sha512\nelasticsearch-7.16.2-linux-x86_64.tar.gz: OK\n&#x5B;elastic@vmelastic app]$\n<\/pre>\n<p>Compares the SHA of the downloaded .tar.gz archive and the published checksum, which should output elasticsearch-{version}-linux-x86_64.tar.gz: OK. as shown above.<\/p>\n<h2>Install Elasticsearch<\/h2>\n<p>Simply, extract the tar.gz file:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&#x5B;elastic@vmelastic app]$ tar -xzf elasticsearch-7.16.2-linux-x86_64.tar.gz\n&#x5B;elastic@vmelastic app]$ ls -rtl\ntotal 335624\ndrwxr-x---. 9 elastic elastic      4096 Dec 18 19:48 elasticsearch-7.16.2\n-rw-r-----. 1 elastic elastic 343664171 Dec 19 11:01 elasticsearch-7.16.2-linux-x86_64.tar.gz\n-rw-r-----. 1 elastic elastic       171 Dec 19 11:01 elasticsearch-7.16.2-linux-x86_64.tar.gz.sha512\n&#x5B;elastic@vmelastic app]$ cd elasticsearch-7.16.2\n<\/pre>\n<p>This directory, the path to <em>elasticsearch-7.16.2<\/em> folder is known as $ES_HOME.<\/p>\n<p>The content of ES_HOME:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&#x5B;elastic@vmelastic elasticsearch-7.16.2]$ ls -rtl\ntotal 652\n-rw-r-----.  1 elastic elastic   2710 Dec 18 19:40 README.asciidoc\n-rw-r-----.  1 elastic elastic   3860 Dec 18 19:40 LICENSE.txt\ndrwxr-x---.  2 elastic elastic   4096 Dec 18 19:45 plugins\ndrwxr-x---.  2 elastic elastic   4096 Dec 18 19:45 logs\n-rw-r-----.  1 elastic elastic 627787 Dec 18 19:45 NOTICE.txt\ndrwxr-x---.  3 elastic elastic   4096 Dec 18 19:48 lib\ndrwxr-x---.  2 elastic elastic   4096 Dec 18 19:48 bin\ndrwxr-x---.  9 elastic elastic   4096 Dec 18 19:48 jdk\ndrwxr-x---. 61 elastic elastic   4096 Dec 18 19:48 modules\ndrwxr-x---.  3 elastic elastic   4096 Dec 28 13:58 config\n<\/pre>\n<p>Elasticsearch writes the data you index to indices and data streams to a data directory which will be created, and writes in logs directory its own application logs which contain information about cluster health and operations.<br \/>\nIt is highly recommended to set the path.data and path.logs in elasticsearch.yml (see below) to locations outside of $ES_HOME because files in $ES_HOME risk deletion during an upgrade.<\/p>\n<h2>Configure Elasticsearch<\/h2>\n<p>In fact, Elasticsearch ships with good defaults and requires very little configuration depending on your need. However, the configuration files should contain settings which are node-specific, such as node.name and paths, or settings which a node requires in order to be able to join a cluster, such as cluster.name and network.host.<\/p>\n<p>Basically, you have to know about three configuration files:<\/p>\n<ul>\n<li><strong>elasticsearch.yml<\/strong> to configure Elasticsearch<\/li>\n<li><strong>jvm.options<\/strong> to configure Elasticsearch JVM settings<\/li>\n<li><strong>log4j2.properties<\/strong> to configure Elasticsearch logging<\/li>\n<\/ul>\n<p>These configuration files format is YAML and are located by default in $ES_HOME\/config, you can customize the location using <em>ES_PATH_CONF<\/em> environment variable which is recommended for the same reason as data and logs directories!<br \/>\nPlease note that environment variables referenced like <em>${VARIABLE}<\/em> notation within the configuration files will be replaced with the value of the environment variable. This is really helpful \ud83d\ude09<\/p>\n<h3>Set the JVM heap size<\/h3>\n<p>To override the default heap size, set the minimum and maximum heap size settings, Xms and Xmx.<br \/>\nThe minimum and maximum values must be the same, and no more than 50% of your total memory, because Elasticsearch requires memory for purposes other than the JVM heap!<\/p>\n<p>To do so, update the jvm.options in the custom config directory.<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&#x5B;elastic@vmelastic ~]$ vi $ES_PATH_CONF\/jvm.options\n<\/pre>\n<p>Add the below two lines according to your environment and your need:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n-Xms2g\n-Xmx2g\n<\/pre>\n<h3>Configure Elasticsearch<\/h3>\n<p>To configure elasticsearch, update elasticsearch.yml in the custom config directory:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&#x5B;elastic@vmelastic ~]$ vi $ES_PATH_CONF\/elasticsearch.yml\n<\/pre>\n<p><strong>Cluster name<\/strong><br \/>\nA node can only join a cluster when it shares its cluster.name with all the other nodes in the cluster. The default name is elasticsearch, but you should change it to an appropriate name which describes the purpose of the cluster, and of course if you run more then one cluster.<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\ncluster.name: elasticsearch-logging\n<\/pre>\n<p><strong>Node name<\/strong><br \/>\nIt is worth configuring a more meaningful name of a node, which will also have the advantage of persisting after restarting the node:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\nnode.name: Master1\n<\/pre>\n<p>If you have dedicated host per node, it make sense to set to the server\u2019s HOSTNAME as follows:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\nnode.name: ${HOSTNAME}\n<\/pre>\n<p><strong>Data and Log path<\/strong><br \/>\nIf you are using the .zip or .tar.gz archives, the data and logs directories are sub-folders of $ES_HOME as we saw above. Please be careful, if these important folders are left in their default locations, there is a high risk of them being deleted while upgrading Elasticsearch to a new version (I know I repeat it \ud83d\ude09 )<\/p>\n<p>So, to change the locations of the data and log folder:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\npath.logs: \/data\/log\/elasticsearch\npath.data: \/data\/elasticsearch\n<\/pre>\n<p><strong>Network Host<\/strong><br \/>\nBy default, Elasticsearch binds to loopback addresses only\u2009(127.0.0.1 and [::1]). This is maybe sufficient to run a single development node on a server, but not to build a cluster with multiple nodes.<\/p>\n<p>I recommend you to set this value in all you installations:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\nnetwork.host: XXX.XXX.X.XX\n<\/pre>\n<p>On the other hand, be aware that Elasticsearch assumes that you are moving from development mode to production mode, and upgrades a number of system startup checks from warnings to exceptions when you set the network.host!<\/p>\n<p><strong>Discovery<\/strong><br \/>\nProvides a list of the addresses of the master-eligible nodes in the cluster. Each address has the format host:port or host. If the port is not given then it is determined by checking the following settings in order:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\ntransport.profiles.default.port\ntransport.port\n<\/pre>\n<p>If neither of these is set then the default port is 9300. The default value for discovery.seed_hosts is:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\ndiscovery.seed_hosts: &#x5B;&quot;127.0.0.1&quot;, &quot;&#x5B;::1]&quot;]\n<\/pre>\n<p>In our case, as we set only one node, we will specify it as master-eligible:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\ndiscovery.seed_hosts: &#x5B;&quot;XXX.XXX.X.X&quot;]\n<\/pre>\n<p>Now, we are OK with the configuration, we can start Elasticsearch.<\/p>\n<h2>Start Elasticsearch<\/h2>\n<p>As said before, it is a best practice to change config, data, and logs directories location.<\/p>\n<p>Define ES_PATH_CONF and then Elasticsearch can be started from the command line as follows:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\nES_PATH_CONF=\/path\/to\/config $ES_HOME\/bin\/elasticsearch\n<\/pre>\n<p>Once Elasticsearch started, you can check it:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\ncurl -X GET &quot;XXX.XXX.X.XX:9200\/?pretty&quot;\n<\/pre>\n<p>With X-Pack security enabled, you will need to set username and password in the curl:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\ncurl -u username:password -X GET &quot;XXX.XXX.X.XX:9200\/?pretty&quot;\n<\/pre>\n<p>The response should be like:<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n{\n  &quot;name&quot; : &quot;Master1&quot;,\n  &quot;cluster_name&quot; : &quot;elasticsearch-logging&quot;,\n  &quot;cluster_uuid&quot; : &quot;7rniLCvFRIGrsDqzJsoo6A&quot;,\n  &quot;version&quot; : {\n    &quot;number&quot; : &quot;7.16.2&quot;,\n    &quot;build_flavor&quot; : &quot;default&quot;,\n    &quot;build_type&quot; : &quot;tar&quot;,\n    &quot;build_hash&quot; : &quot;65f6e357953a5bc21073d89aa29&quot;,\n    &quot;build_date&quot; : &quot;2021-28-12T12:55:29.143308416Z&quot;,\n    &quot;build_snapshot&quot; : false,\n    &quot;lucene_version&quot; : &quot;8.10.1&quot;,\n    &quot;minimum_wire_compatibility_version&quot; : &quot;1.2.3&quot;,\n    &quot;minimum_index_compatibility_version&quot; : &quot;1.2.3&quot;\n  },\n  &quot;tagline&quot; : &quot;You Know, for Search&quot;\n}\n<\/pre>\n<p>Elasticsearch has been downloaded, configured and started successfully, I hope that this blog helps you to begin with Elasticsearch. Don&#8217;t hesitate to ask questions I will try to reply as soon as possible \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>After we made a global overview on Elastic Stack and we went more in deep in Elasticsearch terminologies. This third blog in the Elastic Stack series will allow you to know how to set up Elasticsearch, from Downloading, Installing, Configuring, and Starting.<\/p>\n","protected":false},"author":46,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197],"tags":[100,86,87,101],"type_dbi":[],"class_list":["post-471","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","tag-elastic-stack","tag-elasticsearch","tag-elk","tag-installation"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Elastic (ELK) Stack - Set up Elasticsearch - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Elastic (ELK) Stack - Set up Elasticsearch\" \/>\n<meta property=\"og:description\" content=\"After we made a global overview on Elastic Stack and we went more in deep in Elasticsearch terminologies. This third blog in the Elastic Stack series will allow you to know how to set up Elasticsearch, from Downloading, Installing, Configuring, and Starting.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-29T08:18:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-06T06:26:18+00:00\" \/>\n<meta name=\"author\" content=\"David Diab\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"David Diab\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/\"},\"author\":{\"name\":\"David Diab\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/deb907c3360cacdc6c7df54b4bac3c86\"},\"headline\":\"Elastic (ELK) Stack &#8211; Set up Elasticsearch\",\"datePublished\":\"2021-12-29T08:18:26+00:00\",\"dateModified\":\"2022-04-06T06:26:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/\"},\"wordCount\":1518,\"commentCount\":0,\"keywords\":[\"elastic Stack\",\"Elasticsearch\",\"ELK\",\"Installation\"],\"articleSection\":[\"Application integration &amp; Middleware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/\",\"name\":\"Elastic (ELK) Stack - Set up Elasticsearch - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2021-12-29T08:18:26+00:00\",\"dateModified\":\"2022-04-06T06:26:18+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/deb907c3360cacdc6c7df54b4bac3c86\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Elastic (ELK) Stack &#8211; Set up Elasticsearch\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/deb907c3360cacdc6c7df54b4bac3c86\",\"name\":\"David Diab\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g\",\"caption\":\"David Diab\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/david-diab\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Elastic (ELK) Stack - Set up Elasticsearch - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/","og_locale":"en_US","og_type":"article","og_title":"Elastic (ELK) Stack - Set up Elasticsearch","og_description":"After we made a global overview on Elastic Stack and we went more in deep in Elasticsearch terminologies. This third blog in the Elastic Stack series will allow you to know how to set up Elasticsearch, from Downloading, Installing, Configuring, and Starting.","og_url":"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/","og_site_name":"dbi Blog","article_published_time":"2021-12-29T08:18:26+00:00","article_modified_time":"2022-04-06T06:26:18+00:00","author":"David Diab","twitter_card":"summary_large_image","twitter_misc":{"Written by":"David Diab","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/"},"author":{"name":"David Diab","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/deb907c3360cacdc6c7df54b4bac3c86"},"headline":"Elastic (ELK) Stack &#8211; Set up Elasticsearch","datePublished":"2021-12-29T08:18:26+00:00","dateModified":"2022-04-06T06:26:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/"},"wordCount":1518,"commentCount":0,"keywords":["elastic Stack","Elasticsearch","ELK","Installation"],"articleSection":["Application integration &amp; Middleware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/","url":"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/","name":"Elastic (ELK) Stack - Set up Elasticsearch - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2021-12-29T08:18:26+00:00","dateModified":"2022-04-06T06:26:18+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/deb907c3360cacdc6c7df54b4bac3c86"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/elastic-elk-stack-set-up-elasticsearch\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Elastic (ELK) Stack &#8211; Set up Elasticsearch"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/deb907c3360cacdc6c7df54b4bac3c86","name":"David Diab","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g","caption":"David Diab"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/david-diab\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/471","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/46"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=471"}],"version-history":[{"count":5,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/471\/revisions"}],"predecessor-version":[{"id":23917,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/471\/revisions\/23917"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=471"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=471"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=471"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=471"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}