{"id":1359,"date":"2021-02-03T03:53:04","date_gmt":"2021-02-03T09:53:04","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1359"},"modified":"2021-03-01T04:24:20","modified_gmt":"2021-03-01T10:24:20","slug":"how-to-install-elasticsearch-on-ubuntu-20-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/","title":{"rendered":"How to Install Elasticsearch on Ubuntu 20.04"},"content":{"rendered":"<div id=\"linux-4037876112\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p><img decoding=\"async\" class=\"alignright wp-image-1361 size-thumbnail\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/installing-elasticsearch-on-ubuntu-20.04-150x150.png\" alt=\"installing elasticsearch on ubuntu 20.04\" width=\"150\" height=\"150\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/installing-elasticsearch-on-ubuntu-20.04-150x150.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/installing-elasticsearch-on-ubuntu-20.04-60x60.png 60w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/installing-elasticsearch-on-ubuntu-20.04.png 200w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>Elasticsearch is an open-source platform for full-text search and analytics engines. It allows you to store, search, and analyze a large amount of data in real-time. It is a popular search engine designed for applications that have complex search requirements. With Elasticsearch, you can build a complex search functionality similar to the Google search engine.<\/p>\n<p>In this tutorial, we will show you how to install Elasticsearch on Ubuntu 20.04.<\/p>\n<p><!--more--><\/p>\n<h2 id=\"h-prerequisites\">Prerequisites<\/h2>\n<ul>\n<li>An Ubuntu 20.04 VPS (we\u2019ll be using our SSD 2 VPS plan)<\/li>\n<li>Access to the root user account (or access to an admin account with root privileges)<\/li>\n<\/ul>\n<h2 id=\"h-step-1-log-in-to-the-server-update-the-server-os-packages\"><span id=\"Step-1-Log-in-to-the-Server-Update-the-Server-OS-Packages\" class=\"ez-toc-section\"><\/span>Step 1: Log in to the Server &amp; Update the Server OS Packages<\/h2>\n<p>First, log in to your Ubuntu 20.04 server via SSH as the root user:<\/p>\n<pre class=\"wp-block-preformatted\">ssh root@IP_Address -p Port_number<\/pre>\n<p>You will need to replace \u2018IP_Address\u2019 and \u2018Port_number\u2019 with your server\u2019s respective IP address and SSH port number. Additionally, replace \u2018root\u2019 with the username of the admin account if necessary.<\/p>\n<p>Before starting, you have to make sure that all Ubuntu OS packages installed on the server are up to date. You can do this by running the following commands:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get update -y\r\napt-get upgrade -y<\/pre>\n<h2 id=\"h-step-2-add-elasticseach-repository\"><span id=\"Step-2-Add-Elasticseach-Repository\" class=\"ez-toc-section\"><\/span>Step 2: Add Elasticseach Repository<\/h2>\n<p>By default, Elasticsearch is not available in the Ubuntu standard OS repository. So you will need to add the Elasticsearch repository to your system.<\/p>\n<p>First, install the required dependencies with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get install apt-transport-https ca-certificates gnupg2 -y<\/pre>\n<p>Once all the dependencies are installed, import the GPG key with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">wget -qO - https:\/\/artifacts.elastic.co\/GPG-KEY-elasticsearch | apt-key add -<\/pre>\n<p>Next, add the Elasticsearch repository with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">sh -c 'echo \"deb https:\/\/artifacts.elastic.co\/packages\/7.x\/apt stable main\" &gt; \/etc\/apt\/sources.list.d\/elastic-7.x.list'<\/pre>\n<p>Once the repository is added, you can proceed and install Elasticsearch.<\/p>\n<h2 id=\"h-step-3-install-elasticsearch\"><span id=\"Step-3-Install-Elasticsearch\" class=\"ez-toc-section\"><\/span>Step 3: Install Elasticsearch<\/h2>\n<p>Now, update the repository cache and install the Elasticsearch with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get update -y\r\napt-get install elasticsearch -y<\/pre>\n<p>Once the installation is completed, start the Elasticsearch service and enable it to start at system reboot with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">systemctl start elasticsearch\r\nsystemctl enable elasticsearch<\/pre>\n<p>Next, verify whether Elasticsearch is running or not with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">curl -X GET \"localhost:9200\"<\/pre>\n<p>You should get the following output:<\/p>\n<pre class=\"wp-block-preformatted\">{\r\n  \"name\" : \"ubuntu2004\",\r\n  \"cluster_name\" : \"elasticsearch\",\r\n  \"cluster_uuid\" : \"JJY-gI6ESgqEvz1dSPxs3g\",\r\n  \"version\" : {\r\n    \"number\" : \"7.10.1\",\r\n    \"build_flavor\" : \"default\",\r\n    \"build_type\" : \"deb\",\r\n    \"build_hash\" : \"1c34507e66d7db1211f66f3513706fdf548736aa\",\r\n    \"build_date\" : \"2020-12-05T01:00:33.671820Z\",\r\n    \"build_snapshot\" : false,\r\n    \"lucene_version\" : \"8.7.0\",\r\n    \"minimum_wire_compatibility_version\" : \"6.8.0\",\r\n    \"minimum_index_compatibility_version\" : \"6.0.0-beta1\"\r\n  },\r\n  \"tagline\" : \"You Know, for Search\"\r\n}\r\n<\/pre>\n<h2 id=\"h-step-4-configure-elasticsearch-for-remote-access\"><span id=\"Step-4-Configure-Elasticsearch-for-Remote-Access\" class=\"ez-toc-section\"><\/span>Step 4: Configure Elasticsearch for Remote Access<\/h2>\n<p>By default, Elasticsearch is configured to listen on localhost only. If your application is hosted on the remote server and wants to use the Elasticsearch database then you will need to configure Elasticsearch to allow remote connection.<\/p>\n<p>You can do it by editing Elasticsearch main configuration file:<\/p>\n<pre class=\"wp-block-preformatted\">nano \/etc\/elasticsearch\/elasticsearch.yml<\/pre>\n<p>Uncomment and change the following line:<\/p>\n<pre class=\"wp-block-preformatted\">cluster.name: my-application\r\nnetwork.host: 192.168.0.100\r\ndiscovery.seed_hosts: 192.168.0.100     \r\n<\/pre>\n<p>Save and close the file then restart the Elasticsearch service to apply the configuration changes:<\/p>\n<pre class=\"wp-block-preformatted\">systemctl restart elasticsearch<\/pre>\n<p><img decoding=\"async\" class=\"alignright wp-image-1361 size-thumbnail\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/installing-elasticsearch-on-ubuntu-20.04-150x150.png\" alt=\"installing elasticsearch on ubuntu 20.04\" width=\"150\" height=\"150\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/installing-elasticsearch-on-ubuntu-20.04-150x150.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/installing-elasticsearch-on-ubuntu-20.04-60x60.png 60w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/installing-elasticsearch-on-ubuntu-20.04.png 200w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>Congratulations! you have successfully installed Elasticsearch on an Ubuntu 20.04 VPS.installing Elasticsearch on Ubuntu 20.04<\/p>\n<p>If you use one of our <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\">server management services<\/a>, can simply ask our expert Linux admins to setup this for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p>PS. If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-3819305382\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Elasticsearch is an open-source platform for full-text search and analytics engines. It allows you to store, search, and analyze a large amount of data in real-time. It is a popular search engine designed for applications that have complex search requirements. With Elasticsearch, you can build a complex search functionality similar to the Google search engine. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1360,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[177,20,174],"class_list":["post-1359","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-elasticsearch","tag-ubuntu","tag-ubuntu-20-04"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Elasticsearch on Ubuntu 20.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Elasticsearch is an open-source platform for full-text search and analytics engines. It allows you to store, search, and analyze a large amount of data in\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/\" \/>\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 Ubuntu 20.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Elasticsearch is an open-source platform for full-text search and analytics engines. It allows you to store, search, and analyze a large amount of data in\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-03T09:53:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-01T10:24:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/how-to-install-elasticsearch-on-ubuntu-20.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Elasticsearch on Ubuntu 20.04\",\"datePublished\":\"2021-02-03T09:53:04+00:00\",\"dateModified\":\"2021-03-01T10:24:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/\"},\"wordCount\":463,\"commentCount\":1,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/how-to-install-elasticsearch-on-ubuntu-20.04.jpg\",\"keywords\":[\"elasticsearch\",\"ubuntu\",\"ubuntu 20.04\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/\",\"name\":\"How to Install Elasticsearch on Ubuntu 20.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/how-to-install-elasticsearch-on-ubuntu-20.04.jpg\",\"datePublished\":\"2021-02-03T09:53:04+00:00\",\"dateModified\":\"2021-03-01T10:24:20+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Elasticsearch is an open-source platform for full-text search and analytics engines. It allows you to store, search, and analyze a large amount of data in\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/how-to-install-elasticsearch-on-ubuntu-20.04.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/how-to-install-elasticsearch-on-ubuntu-20.04.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Install Elasticsearch on Ubuntu 20.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Elasticsearch on Ubuntu 20.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Elasticsearch on Ubuntu 20.04 | LinuxHostSupport","description":"Elasticsearch is an open-source platform for full-text search and analytics engines. It allows you to store, search, and analyze a large amount of data in","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:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Elasticsearch on Ubuntu 20.04 | LinuxHostSupport","og_description":"Elasticsearch is an open-source platform for full-text search and analytics engines. It allows you to store, search, and analyze a large amount of data in","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2021-02-03T09:53:04+00:00","article_modified_time":"2021-03-01T10:24:20+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/how-to-install-elasticsearch-on-ubuntu-20.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Elasticsearch on Ubuntu 20.04","datePublished":"2021-02-03T09:53:04+00:00","dateModified":"2021-03-01T10:24:20+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/"},"wordCount":463,"commentCount":1,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/how-to-install-elasticsearch-on-ubuntu-20.04.jpg","keywords":["elasticsearch","ubuntu","ubuntu 20.04"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/","name":"How to Install Elasticsearch on Ubuntu 20.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/how-to-install-elasticsearch-on-ubuntu-20.04.jpg","datePublished":"2021-02-03T09:53:04+00:00","dateModified":"2021-03-01T10:24:20+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Elasticsearch is an open-source platform for full-text search and analytics engines. It allows you to store, search, and analyze a large amount of data in","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/how-to-install-elasticsearch-on-ubuntu-20.04.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/02\/how-to-install-elasticsearch-on-ubuntu-20.04.jpg","width":750,"height":410,"caption":"How to Install Elasticsearch on Ubuntu 20.04"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-elasticsearch-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Elasticsearch on Ubuntu 20.04"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1359","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1359"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1359\/revisions"}],"predecessor-version":[{"id":1367,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1359\/revisions\/1367"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1360"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1359"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1359"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1359"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}