mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
This commit changes the note in docs about required java version to note the existence of the bundled jdk and how to bring your own java. It also reorganizes the zip/targz docs as zip is no longer suitable on Linux/MacOS.
18 lines
611 B
Plaintext
18 lines
611 B
Plaintext
==== Running Elasticsearch from the command line
|
|
|
|
Elasticsearch can be started from the command line as follows:
|
|
|
|
[source,sh]
|
|
--------------------------------------------
|
|
./bin/elasticsearch
|
|
--------------------------------------------
|
|
|
|
By default, Elasticsearch runs in the foreground, prints its logs to the
|
|
standard output (`stdout`), and can be stopped by pressing `Ctrl-C`.
|
|
|
|
NOTE: All scripts packaged with Elasticsearch require a version of Bash
|
|
that supports arrays and assume that Bash is available at `/bin/bash`.
|
|
As such, Bash should be available at this path either directly or via a
|
|
symbolic link.
|
|
|