{"id":3483,"date":"2015-01-05T16:06:54","date_gmt":"2015-01-05T16:06:54","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2015\/01\/05\/how-to-install-elasticsearch\/"},"modified":"2022-05-31T15:46:05","modified_gmt":"2022-05-31T19:46:05","slug":"how-to-install-elasticsearch","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/","title":{"rendered":"How to install Elasticsearch"},"content":{"rendered":"<p><a href=\"https:\/\/www.elastic.co\/elasticsearch\/\" target=\"_blank\" rel=\"noreferrer noopener\">Elasticsearch<\/a> is a free open-source analytics application capable of storing and recalling big data in real-time. It\u2019s a great option for anyone searching through large amounts of data on a regular basis. Elasticsearch can also be installed along with Logstash, Kibana, and Beats for a powerful security information and event management (SIEM) application called the Elastic Stack, or <a href=\"https:\/\/www.elastic.co\/elk-stack\" target=\"_blank\" rel=\"noreferrer noopener\">ELK Stack<\/a>.<\/p>\n\n\n\n<p>Even when not accompanied by the rest of the ELK Stack, it may be preferred over the popular ArcSight and <a href=\"https:\/\/www.inmotionhosting.com\/support\/security\/install-splunk\/\">Splunk SIEM<\/a> tools because of the price (free) and <a rel=\"noreferrer noopener\" href=\"https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/plugins\/current\/integrations.html\" target=\"_blank\">Elasticsearch integrations<\/a> for many popular web applications today including <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/drupal-8-release\/\">Drupal<\/a>, <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/ansible\/what-is-ansible\/\">Ansible<\/a>, and <a rel=\"noreferrer noopener\" href=\"https:\/\/www.wireshark.org\/\" target=\"_blank\">Wireshark<\/a>.<\/p>\n\n\n\n<p>In this article, we\u2019ll cover how to:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#install\">Install Elasticsearch<\/a><ul><li><a href=\"#centos\">CentOS<\/a><\/li><li><a href=\"#debian\">Debian\/Ubuntu<\/a><\/li><\/ul><\/li><li><a href=\"#systemd\">Start Elasticsearch<\/a><\/li><li><a href=\"#config\">Configure Elasticsearch<\/a><\/li><li><a href=\"#wordpress\">Use Elasticsearch with WordPress<\/a><\/li><li><a href=\"#query\">Use Elasticsearch Query DSL<\/a><\/li><\/ul>\n\n\n\n<p class=\"alert alert-info\">Get the best in security and performance without the high price with our <a href=\"https:\/\/www.inmotionhosting.com\/vps-hosting\">Managed Linux VPS Hosting<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install\">Installing Elasticsearch<\/h2>\n\n\n\n<p>The easiest way to install Elasticsearch is from their repositories instead of the OS default repos. This is still an easier option compared to a manual installation and ensures you\u2019ll be able easily keep Elasticsearch updated.<\/p>\n\n\n\n<p class=\"alert alert-warning\">For dedicated cPanel servers, Elasticsearch require that the \u201c\/tmp\u201d directory be executable.  Otherwise, you\u2019ll need to <a aria-label=\"compile Elasticsearch from source code (opens in a new tab)\" href=\"https:\/\/github.com\/elastic\/elasticsearch\" target=\"_blank\" rel=\"noreferrer noopener\">compile Elasticsearch from source code<\/a> and set your own temporary files directory during the configuration.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"centos\">Install Elasticsearch on CentOS<\/h3>\n\n\n\n<ol class=\"article_list wp-block-list\"><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/how-to-login-ssh\/\">SSH into your server<\/a> as root.<\/li><li>Download the Elasticsearch PGP key: <pre>rpm --import https:\/\/artifacts.elastic.co\/GPG-KEY-elasticsearch <\/pre><\/li><li>Create an <code>elasticsearch.repo<\/code> file in <code>\/etc\/yum.repos.d\/<\/code> using <a rel=\"noreferrer noopener\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/how-to-edit-files-using-nano\/\" target=\"_blank\">Nano<\/a>, VIM, or Emacs: <pre>nano \/etc\/yum.repos.d\/elasticsearch.repo<\/pre><\/li><li>Add the following to the file:<br><code>[elasticsearch] <br>name=Elasticsearch repository for 7.x packages<br>baseurl=https:\/\/artifacts.elastic.co\/packages\/7.x\/yum<br>gpgcheck=1<br>gpgkey=https:\/\/artifacts.elastic.co\/GPG-KEY-elasticsearch<br>enabled=0<br>autorefresh=1<br>type=rpm-md<\/code><\/li><li>Save changes.<\/li><li>Now install Elasticsearch: <pre>sudo yum install --enablerepo=elasticsearch elasticsearch <\/pre><p class=\"alert alert-info\"> The configured repository is disabled by default to prevent upgrading Elasticsearch when upgrading the rest of the system. Therefore, installation and upgrade commands must explicitly enable the repo.<\/p><\/li><li>Open port 9200 in your firewall: <a href=\"https:\/\/www.inmotionhosting.com\/support\/security\/how-to-open-a-port-in-firewalld\/\">Firewalld<\/a>, <a href=\"https:\/\/www.inmotionhosting.com\/support\/security\/open-a-port-in-ufw\/\">UFW<\/a>, <a href=\"https:\/\/www.inmotionhosting.com\/support\/security\/install-csf-on-ubuntu\/#ports\">CSF<\/a>, etc. Or if you need to use another port, <a href=\"#config\">edit the Elasticsearch YAML file<\/a>.<\/li><li>Check that Elasticsearch is running on an open port: <pre>curl -X GET localhost:9200 <\/pre><\/li><li>If you receive <code>curl: (7) Failed connect to localhost:9200; Connection refused<\/code>, check your Firewalld settings again.<\/li><\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"debian\">Install Elasticsearch on Debian<\/h3>\n\n\n\n<ol class=\"article_list wp-block-list\"><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/how-to-login-ssh\/\">SSH into your server<\/a> as root.<\/li><li>Download the Elasticsearch PGP key: <pre>wget -qO - https:\/\/artifacts.elastic.co\/GPG-KEY-elasticsearch | sudo apt-key add -<\/pre><\/li><li>Install apt-transport-https to access packages with an SSL (HTTPS) connection: <pre>sudo apt-get install apt-transport-https<\/pre><\/li><li>Add the Elastic repo to a new elastic-7.x.list file: <pre>echo \"deb https:\/\/artifacts.elastic.co\/packages\/7.x\/apt stable main\" | sudo tee \/etc\/apt\/sources.list.d\/elastic-7.x.list<\/pre><\/li><li>Install Elasticsearch: <pre>sudo apt-get update &amp;&amp; sudo apt-get install elasticsearch <\/pre><\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"systemd\">Setting Elasticsearch as a System Service<\/h2>\n\n\n\n<p>Use the following command to start Elasticsearch now:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start elasticsearch<\/pre>\n\n\n\n<p>Use the following command to enable Elasticsearch to automatically start upon system reboot:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl enable elasticsearch<\/pre>\n\n\n\n<p>Use the following command to check for any issues related to starting or enabling Elasticsearch:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl status elasticsearch<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"config\">Configuring Elasticsearch<\/h2>\n\n\n\n<p>To make changes to Elasticsearch, edit the Elasticsearch YAML file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nano \/etc\/elasticsearch\/elasticsearch.yml<\/pre>\n\n\n\n<p>By default, Elasticsearch uses port 9200 or the next available port between 9200-9300. If you need to specify a different Elasticsearch port, change the following line and remove the <code>#<\/code> at the beginning:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">#http.port: 9200<\/pre>\n\n\n\n<p>Ensure Elasticsearch is running on an open port, changing <code>localhost<\/code> to your domain or other hostname as needed:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">curl -X GET localhost:9200<\/pre>\n\n\n\n<p class=\"alert alert-info\">To find your server IP in the command line, use <code>hostname -i<\/code><\/p>\n\n\n\n<p>If this Elasticsearch installation will join a node cluster, change the hostname to a <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/how-to-find-your-shared-ip-address-of-your-server-in-cpanel\/\">server IP address<\/a> or server hostname and remove the <code>#<\/code> at the beginning of the following line:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">#network.host: 192.168.0.1<\/pre>\n\n\n\n<p>You can also create descriptive node name for easier navigation among cluster setups by modifying the following line:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">#node.name: node-1<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignright size-medium\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"191\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3-300x191.png\" alt=\"Installing ElasticPress for Elasticsearch functionality\" class=\"wp-image-13801\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3-300x191.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3-768x490.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3-1024x653.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3.png 1482w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wordpress\">Elasticsearch with WordPress<\/h2>\n\n\n\n<p>WordPress users that work with WP_Query objects can use the Elasticsearch search engine with <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/integrating-elasticsearch-with-wordpress-using-elasticpress\/\">ElasticPress in WordPress<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"query\">Elasticsearch Query DSL<\/h2>\n\n\n\n<p>To get started, read about how to use the Elasticsearch Query domain specific language (DSL) for working with <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/working-with-indexes-in-elasticsearch\/\">indexes<\/a> or create <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/creating-documents-in-elasticsearch\/\">Elasticsearch documents<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Elasticsearch is a free open-source analytics application capable of storing and recalling big data in real-time. It&#8217;s a great option for anyone searching through large amounts of data on a regular basis. Elasticsearch can also be installed along with Logstash, Kibana, and Beats for a powerful security information and event management (SIEM) application called the<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4360],"tags":[],"class_list":["post-3483","post","type-post","status-publish","format-standard","hentry","category-software"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Elasticsearch on Linux<\/title>\n<meta name=\"description\" content=\"Learn how to install the Elasticsearch search engine and prepare it for a node cluster, Elastic Stack, or other Elasticsearch query tasks.\" \/>\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.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Elasticsearch on Linux\" \/>\n<meta property=\"og:description\" content=\"Learn how to install the Elasticsearch search engine and prepare it for a node cluster, Elastic Stack, or other Elasticsearch query tasks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2015-01-05T16:06:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-31T19:46:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3-300x191.png\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"How to install Elasticsearch\",\"datePublished\":\"2015-01-05T16:06:54+00:00\",\"dateModified\":\"2022-05-31T19:46:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/\"},\"wordCount\":567,\"commentCount\":12,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3-300x191.png\",\"articleSection\":[\"Software\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/\",\"name\":\"How to Install Elasticsearch on Linux\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3-300x191.png\",\"datePublished\":\"2015-01-05T16:06:54+00:00\",\"dateModified\":\"2022-05-31T19:46:05+00:00\",\"description\":\"Learn how to install the Elasticsearch search engine and prepare it for a node cluster, Elastic Stack, or other Elasticsearch query tasks.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3.png\",\"width\":1482,\"height\":945,\"caption\":\"Installing ElasticPress in WordPress dashboard\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Elasticsearch\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Elasticsearch on Linux","description":"Learn how to install the Elasticsearch search engine and prepare it for a node cluster, Elastic Stack, or other Elasticsearch query tasks.","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.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Elasticsearch on Linux","og_description":"Learn how to install the Elasticsearch search engine and prepare it for a node cluster, Elastic Stack, or other Elasticsearch query tasks.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2015-01-05T16:06:54+00:00","article_modified_time":"2022-05-31T19:46:05+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3-300x191.png","type":"","width":"","height":""}],"author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"How to install Elasticsearch","datePublished":"2015-01-05T16:06:54+00:00","dateModified":"2022-05-31T19:46:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/"},"wordCount":567,"commentCount":12,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3-300x191.png","articleSection":["Software"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/","name":"How to Install Elasticsearch on Linux","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3-300x191.png","datePublished":"2015-01-05T16:06:54+00:00","dateModified":"2022-05-31T19:46:05+00:00","description":"Learn how to install the Elasticsearch search engine and prepare it for a node cluster, Elastic Stack, or other Elasticsearch query tasks.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2015\/01\/wordpress_install-elasticpress-3.png","width":1482,"height":945,"caption":"Installing ElasticPress in WordPress dashboard"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/software\/how-to-install-elasticsearch\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to install Elasticsearch"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3483","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=3483"}],"version-history":[{"count":10,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3483\/revisions"}],"predecessor-version":[{"id":97366,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3483\/revisions\/97366"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=3483"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=3483"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=3483"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}