Home Linux Server Install Elasticsearch on CentOS 7

Install Elasticsearch on CentOS 7

by
Published: Last Updated on
A+A-
Reset

In this article, AZDIGI will show you how to install Elasticsearch on CentOS 7 as straightforward.

I. What is Elasticsearch?

Elasticsearch is a search engine based on Lucene software. It provides a full-featured, distributed search engine with an HTTP web interface that supports JSON data. Elasticsearch is developed in Java and is released as open source under the Apache license.

To put it more simply:

  • Elasticsearch is a search engine.
  • Elasticsearch is inherited from Lucene Apache
  • Elasticsearch actually works as a web server, capable of fast search (near real-time) through RESTful protocol.
  • Elasticsearch is capable of data analysis and statistics
  • Elasticsearch runs on its server and concurrently communicates via RESTful, so it doesn’t depend on what the client is written in or your current system. So integrating it into your system is easy, you just need to send an http request and it will return results.
  • Elasticsearch is a distributed system with excellent scalability. Add a node to it and it automatically expands for you.
  • Elasticsearch is an open source developed in Java.

Companies that are using Elasticsearch:

  • Wikimedia
  • athenahealth
  • Adobe Systems
  • Facebook
  • StumbleUpon Mozilla,
  • Amadeus IT Group
  • Quora
  • Foursquare
  • Etsy
  • SoundCloud
  • GitHub
  • FDA
  • CERN
  • Stack Exchange
  • Center for Open Science
  • Reverb
  • Netflix
  • Pixabay
  • Motili
  • Sophos
  • Slurm Workload Manager

II. Install Elasticsearch on CentOS 7

To install Elasticsearch on CentOS 7, we need to follow these 4 steps.

Step 1: SSH into your server

To install Elasticsearch on CentOS 7, we first need to SSH or access your VPS/server as root. If you don’t know how to SSH into your VPS/Server, you can refer to the following tutorial:

After successfully SSHing, we continue with step 2 to install Java because Elasticsearch requires the server to install Java first to allow the installation.

Step 2: Install Java 8 on CentOS 7

Since Elasticsearch only requires Java 8 version, we will install Java 8 version with the command below.

AZDIGI Tutorial
yum -y install java-1.8.0-openjdk.x86_64
    

After installing Java, you can recheck with the following command:

AZDIGI Tutorial
java -version
    

If the results are returned as below, you have successfully installed Java 8.

AZDIGI Tutorial
[root@sv ~]# java -version
openjdk version "1.8.0_282"
OpenJDK Runtime Environment (build 1.8.0_282-b08)
OpenJDK 64-Bit Server VM (build 25.282-b08, mixed mode)
    
java check version

Step 3: Install Elasticsearch on CentOS 7

To install Elasticsearch on CentOS 7, we run the following commands in turn:

First, we will need to download the Elasticsearch installation file in .rpm format:

AZDIGI Tutorial
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.8.0-x86_64.rpm
    

This file is about 300MB, so it may take some time to download.

how-to-install-elasticsearch-on-centos-7
Download the Elasticsearch installation file.

Next, we install Elasticsearch with the downloaded file with the following command:

AZDIGI Tutorial
rpm -ivh elasticsearch-7.8.0-x86_64.rpm
    
how-to-install-elasticsearch-on-centos-7
Install the Elasticsearch installation file.

Then we need to restart the daemon-reload service by activating the following command:

AZDIGI Tutorial
systemctl daemon-reload
    

Next, we start Elasticsearch with the following command:

AZDIGI Tutorial
systemctl start elasticsearch
    

And after Elasticsearch has finished starting, we can check the operation status of Elasticsearch with the command below:

AZDIGI Tutorial
systemctl status elasticsearch.service
    
how-to-install-elasticsearch-on-centos-7
Install Elasticsearch on CentOS 7 successfully.

At the point, you can verify that Elasticsearch is running by sending an HTTP request to port 9200 on localhost with the following curl command:

AZDIGI Tutorial
curl -X GET "localhost:9200/"
    

If the results return like the following, then you are successful:

AZDIGI Tutorial
{
  "name" : "sv.templateda.com.vn",
  "cluster_name" : "elasticsearch",
  "cluster_uuid" : "GZ8PhoVtRd-C8bdNHiSunw",
  "version" : {
    "number" : "7.8.0",
    "build_flavor" : "default",
    "build_type" : "rpm",
    "build_hash" : "757314695644ea9a1dc2fecd26d1a43856725e65",
    "build_date" : "2020-06-14T19:35:50.234439Z",
    "build_snapshot" : false,
    "lucene_version" : "8.5.1",
    "minimum_wire_compatibility_version" : "6.8.0",
    "minimum_index_compatibility_version" : "6.0.0-beta1"
  },
  "tagline" : "You Know, for Search"
}
    
how-to-install-elasticsearch-on-centos-7

Step 4: Enable Remote Access Elasticsearch

However, we just can only use Elasticsearch on the local computer. So, if you want external users to connect to port 9200, you need to open port 9200 and do a few more steps.

Edit Elasticsearch’s configuration file with the command below:

AZDIGI Tutorial
vi /etc/elasticsearch/elasticsearch.yml
    

Move to line 55, remove # at this line and edit it to the content:

AZDIGI Tutorial
network.host: 0.0.0.0
    
how-to-install-elasticsearch-on-centos-7

Next, remove # at line 72 and edit it to the following content:

AZDIGI Tutorial
cluster.initial_master_nodes: node-1
    

We will then need to restart Elasticsearch with the following command:

AZDIGI Tutorial
systemctl start elasticsearch
    

Now you can connect to your server remotely via port 9200, as shown below:

how-to-install-elasticsearch-on-centos-7

At this point, the installation of Elasticsearch on CentOS 7 has been completed.

III. Summary

Although the article on installing Elasticsearch on CentOS 7 is relatively long and has many complicated sections, AZDIGI hope you can do it successfully. You can visit the official Elasticsearch Documentation page and learn how to get started with Elasticsearch.

Wishing you success! See more useful articles about Linux at the following link:

If you need assistance, you can contact support in the ways below:

Đánh giá

Tham gia nhóm hỗ trợ Server - Hosting

Tham gia nhóm Hỗ trợ Server - Hosting & WordPress để cùng nhau hỏi đáp và hỗ trợ các vấn đề về WordPress, tối ưu máy chủ/server.

Tham gia ngay

Bài viết cùng chuyên mục

AZDIGI – Không chỉ là đơn vị hàng đầu trong lĩnh vực Web Hosting và Máy chủ, chúng tôi mong muốn mang lại những kiến thức bổ ích nhất và luôn cập nhật thường xuyên cho cộng đồng người đam mê thiết kế website, công nghệ,…

Vui lòng không sao chép nội dung nếu chưa xin phép. Designed and Developed by PenciDesign