elasticsearchHow do I download Elasticsearch for Windows?
- Download the latest version of Elasticsearch from the Elasticsearch Download Page.
- Choose the Windows zip package and download it to a local directory.
- Unzip the package to the directory of your choice.
- Open a command prompt and navigate to the directory where you unzipped the package.
- Run the command
bin\elasticsearch
to start the Elasticsearch server. - You should see the following output in the command prompt:
[2017-03-13T10:30:17,846][INFO ][o.e.n.Node ] [node-1] initializing ... [2017-03-13T10:30:17,892][INFO ][o.e.e.NodeEnvironment ] [node-1] using [1] data paths, mounts [[/ (C:)]], net usable_space [20.4gb], net total_space [47.7gb], types [NTFS] [2017-03-13T10:30:17,892][INFO ][o.e.e.NodeEnvironment ] [node-1] heap size [1007.5mb], compressed ordinary object pointers [true] [2017-03-13T10:30:17,936][INFO ][o.e.n.Node ] [node-1] initialized [2017-03-13T10:30:17,936][INFO ][o.e.n.Node ] [node-1] starting ... [2017-03-13T10:30:18,068][INFO ][o.e.t.TransportService ] [node-1] publish_address {127.0.0.1:9300}, bound_addresses {[::1]:9300}, {127.0.0.1:9300} [2017-03-13T10:30:18,099][INFO ][o.e.b.BootstrapChecks ] [node-1] bound or publishing to a non-loopback address, enforcing bootstrap checks [2017-03-13T10:30:18,327][INFO ][o.e.n.Node ] [node-1] started
- You can now access the Elasticsearch API at http://localhost:9200.
Explanation
-
Download the latest version of Elasticsearch from the Elasticsearch Download Page.
- This step downloads the latest version of Elasticsearch from the official website.
-
Choose the Windows zip package and download it to a local directory.
- This step downloads the Windows zip package to a local directory.
-
Unzip the package to the directory of your choice.
- This step unzips the package to the directory of your choice.
-
Open a command prompt and navigate to the directory where you unzipped the package.
- This step opens a command prompt and navigates to the directory where the package was unzipped.
-
Run the command
bin\elasticsearch
to start the Elasticsearch server.- This step runs the command to start the Elasticsearch server.
-
You should see the following output in the command prompt:
- This step displays the output in the command prompt.
[2017-03-13T10:30:17,846][INFO ][o.e.n.Node ] [node-1] initializing ...
[2017-03-13T10:30:17,892][INFO ][o.e.e.NodeEnvironment ] [node-1] using [1] data paths, mounts [[/ (C:)]], net usable_space [20.4gb], net total_space [47.7gb], types [NTFS]
[2017-03-13T10:30:17,892][INFO ][o.e.e.NodeEnvironment ] [node-1] heap size [1007.5mb], compressed ordinary object pointers [true]
[2017-03-13T10:30:17,936][INFO ][o.e.n.Node ] [node-1] initialized
[2017-03-13T10:30:17,936][INFO ][o.e.n.Node ] [node-1] starting ...
[2017-03-13T10:30:18,068][INFO ][o.e.t.TransportService ] [node-1] publish_address {127.0.0.1:9300}, bound_addresses {[::1]:9300}, {127.0.0.1:9300}
[2017-03-13T10:30:18,099][INFO ][o.e.b.BootstrapChecks ] [node-1] bound or publishing to a non-loopback address, enforcing bootstrap checks
[2017-03-13T10:30:18,327][INFO ][o.e.n.Node ] [node-1] started
- You can now access the Elasticsearch API at http://localhost:9200.
- This step allows you to access the Elasticsearch API at http://localhost:9200.
More of Elasticsearch
- How can I use Elasticsearch and ZFS together?
- How can I use Elasticsearch and Zookeeper together to manage distributed applications?
- How can I use Elasticsearch and Zabbix together for software development?
- How can I use Elasticsearch to diagnose "yellow" issues?
- How can I store and query zoned datetime values in Elasticsearch?
- How can I set up and use Elasticsearch on the Yandex Cloud platform?
- How can I use Yandex Mirror to access Elasticsearch data?
- How do I configure elasticsearch to use an XMS memory allocator?
- How do I configure Elasticsearch shards?
- How can I use elasticsearch zone awareness to improve my software development?
See more codes...