Skip to main content

Installation of elasticsearch in windows 11

                               

           INSTALLATION OF ELASTICSEARCH  IN WINDOWS 11                          



ELASTICSEARCH

Elasticsearch(es) allows you to store, search, and analyze big volumes of data quickly and in near real time.

KIBANA

Kibana is a source-available data visualization dashboard software for Elasticsearch.

INSTALLATION

Here ,the elasticsearch and kibana of version 7.6 is installed on a windows 11 and is connected with python .Updated versions with other languages(java ,node.js ,java and CURL) can also be used in any windows.

Following tasks will be clearly explained step by step in this article.

1. Setup the ES cluster(version==7.6) and kibana(version==7.6).

2. Ensure Connection.

 

STEP 1: Install elasticsearch and kibana(version== 7.6) . Extract  the downloaded zip  folder (elasticsearch and kibana) and keep them together in a single folder( for example lets assume it as main folder).

Link to download elasticsearch(version==7.6)=>https://www.elastic.co/downloads/past-releases/elasticsearch-7-6-0

Link to download kibana(version==7.6)=>https://www.elastic.co/downloads/past-releases/kibana-7-6-0

                                


STEP 2: Open Terminal in main folder that contains both elasticsearch and kibana in

 it .Command prompt can also be used.

You may have a doubt on opening a terminal or command prompt in a particular folder ,

 so lets see that first.

1. Right click on your windows button .You can see  either windows terminal or command prompt option based on the admin status.                    

2.  Open either terminal or command prompt.

                               


3. Copy the path of the main folder(select the folder ,right click ,you can see "copy as path "for windows 11)

4. Paste the path in terminal and remove the quotation ('' '') and press enter.

5. Now you have opened a terminal/command prompt in the main folder(folder that has elasticsearch and kibana)

 

STEP 3:Next,open main folder\elasticsearch-7.6.0-windows-x86_64\elasticsearch7.60\

bin\elasticsearch.

STEP 4: Copy the path and paste in terminal and press enter. After bunch of lines displayed ,it will show “started” .Our elasticsearch is now ready to use.

                             


To confirm it ,web search “localhost:9200” and you will get some information as shown in  below .

                               


Successfully we have installed elasticsearch .Lets proceed with installation of kibana       

STEP 5: Follow the same procedure for kibana .Open main folder\kibana-7.6.2-windowsx86_64\kibana-7.6.2-windows-x86_64\bin\kibana.bat .Copy the path and paste in terminal and press enter .After bunch of lines ,it will end by displaying  “http server running at http://localhost:5601 ” , as shown below

                                


To confirm it ,web search “localhost:5601” and the kibana app will be opened in web as shown in below.

                          



So ,here we came to an end by gaining a knowledge to install elasticsearch and kibana .

Thank you for taking the time to read my blog.


                                                                             

 

Comments

Popular posts from this blog

PLASMONICS - A Vision of future

Surface plasmon resonance (SPR) - related science and technology have recently spawned a brand new branch of research referred to as "Plasmonics" Plasmonics, also known as nanoplasmonics, is the creation, detection, and manipulation of signals at optical frequencies at nanoscale scale metal-dielectric interactions. Following the trend of miniaturizing optical devices, plasmonics finds applications in sensing, imaging, optical communications, and bio-photonics. Surface Plasmon Resonance in Bioanalysis For almost a decade, plasmonic imaging has been used to analyze single-cell activity. Although this approach is still in its early stages, its label-free and real-time benefits have piqued curiosity, and it has already been applied to extracellular and intracellular activities. However, as a freshly developed approach, plasmonic imaging has significant flaws that must be addressed before it can be widely used. First, plasmonic imaging’s imaging capacity needs to be improved. The ...

Wget Command

  What is Wget?                     Wget is a simple Linux/Unix command-line utility for downloading the contents, and files from the web. Wget will download the resource from the URL which is specified in the command. With the help of wget, we can download files using HTTP, and HTTPS. We can also download multiple files, resume downloads, recursive downloads, downloads in the background, and different options in the wget command. In this article, let’s see how to install and, use this command with examples. Installing Wget The wget is pre-installed on most of the Linux distros. To verify whether the package is installed, open your terminal type wget  and press enter. You will get a result of   wget: missing URL . If the wget package is not installed it will print wget command not found. Installation on Ubuntu and Debian                sudo apt install ...

Elasticsearch- II

 ELASTICSEARCH                                          In this blog we are going to learn how to use elasticsearch and kibana using python. Before getting into this, make sure that you have elasticsearch and kibana installed. To know the detailed procedure about the installation of elasticsearch and kibana, click the link below to learn the installation process from scratch. https://crescenttechnocratsclub.blogspot.com/2022/09/blog-post.html For python, let’s use VS Code . Visual Studio (VS) Code is a streamlined code editor with support for development operations like debugging, task running, and version control. Python IDLE is also fine to use but we will work with vs code in this blog. Install VS code using the following link : https://code.visualstudio.com/download Click op...