Misc.

How to install elasticsearch on windows?

Elacticsearch installation on windows.

Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. You can install elasticsearch on windows too as I installed it for localhost.

So before installing elasticsearch you must have java installed on your system and also you need to setup environment variable as JAVA_HOME. If you already have installed java then setup environment variable as following.

First you can verify JAVA_HOME is set to C:\Program Files\Java\jdk1.8.0_45 by following command.
C:\>echo %JAVA_HOME%. This command will show you java path where installed.

If JAVA_HOME is not set, then please follow following steps.

  1. Right-click on My Computer icon and select Properties
  2. Click the Advanced system settings.
  3. Enter the variable name as JAVA_HOME
  4. Enter the variable value as the installation path for the JDK. For instance C:\Program Files\Java\jdk1.8.0_45
  5. Click OK, Then apply changes

Now download Elasticsearch.
Extract it in any directory. I suppose that you extracted it in C drive in elasticsearch-1.7.1 as I downloaded elasticsearch-1.7.1.zip file.

Now open command prompt and go in C:\>cd elasticsearch-1.7.1\bin. Now run elasticsearch command here. You will see output similar as in following image.

If you see such information on your command prompt then it means elasticseach installed on your system.

That’s it.

websourceblog

ReactJs, NodeJs, Amazon Web Services, Symfony, Laravel, CodeIgniter, Zend Framework, WordPress, Drupal, Magento, Angular

Recent Posts

How to reset WSL 2 user’s password?

You can easily reset WSL 2 users' password, by just following the following steps. Open…

2 months ago

DreamHost Web Hosting

DreamHost a web hosting company, founded in 1997. It is offering sort of hosting services,…

10 months ago

How to add submenu or menu in any specific menu option in WordPress programmatically?

Menus in WordPress are highly versatile and can be easily modified to change in your…

11 months ago

Laravel 8 error target class controller does not exist.

Laravel is famous and robust PHP framework, widely used in different type of projects. While…

1 year ago

Define Private Methods/Functions in Python Class.

Python is very powerful and famous language, which allow us to write code as per…

2 years ago

Working with dates in PHP.

In this article, I am going to show you how we can get specific dates…

2 years ago