How to confige Elasticsearch in our local system

How to confige Elasticsearch in our local system

In this post we will give you information about How to confige Elasticsearch in our local system. Hear we will give you detail about How to confige Elasticsearch in our local systemAnd how to use it also give you demo for it if it is necessary.

In this tutorials we have learn how to configer a Elastic search in our local system.

follow this step and easily configer an Elastic Search.

1) Step 1 — Installing Java :

-Before installing OpenJDK with APT, update the list of available packages for installation on your Ubuntu Droplet by running the command:

$ sudo apt-get update

-After that, you can install OpenJDK with the command:

$ sudo apt-get install openjdk-7-jre

-To verify your JRE is installed and can be used, run the command:

$ java -version

2) Step 2 — Downloading and Installing Elasticsearch :

$ wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.2.deb

-Then install it in the usual Ubuntu way with the dpkg command like this:

$ sudo dpkg -i elasticsearch-1.7.2.deb

-To make sure Elasticsearch starts and stops automatically with the Droplet, add its init script to the default runlevels with the command:

$ sudo update-rc.d elasticsearch defaults

Step 3 — Configuring Elastic :

-To start editing the main elasticsearch.yml configuration file:

$ sudo nano /etc/elasticsearch/elasticsearch.yml

-Remove the # character at the beginning of the lines for node.name and cluster.name to uncomment them, and then change their values.

node.name: “My First Node”

cluster.name: mycluster1

-Once you make all the changes, please save and exit the file. Now you can start Elasticsearch for the first time with the command:

$ sudo service elasticsearch start


Step 4 — Securing Elastic :

-Elasticsearch has no built-in security and can be controlled by anyone who can access the HTTP API. So, the first security tweak is to prevent public access. To remove public access edit the file elasticsearch.yml:

$ sudo nano /etc/elasticsearch/elasticsearch.yml

-Find the line that contains network.bind_host, uncomment it by removing the # character at the beginning of the line, and change the value to localhost so it looks like this:

network.bind_host: localhost

-To disable custom expressions, add the following line is at the end of the /etc/elasticsearch/elasticsearch.yml file:

script.disable_dynamic: true

Step 5 — Testing :

$ curl -X GET 'http://localhost:9200' or run http://localhost:9200 in any browser.

You should see the following response:

{

"status" : 200,

"name" : "Harry Leland",

"cluster_name" : "elasticsearch",

"version" : {

"number" : "1.7.2",

"build_hash" : "e43676b1385b8125d647f593f7202acbd816e8ec",

"build_timestamp" : "2015-09-14T09:49:53Z",

"build_snapshot" : false,

"lucene_version" : "4.10.4"

},

"tagline" : "You Know, for Search"

}

Hope this code and post will helped you for implement How to confige Elasticsearch in our local system. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

22  +    =  25

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US