|
@@ -1,16 +1,16 @@
|
|
|
[[targz]]
|
|
|
-=== Install Elasticsearch from archive on Linux or MacOS
|
|
|
+=== Install {es} from archive on Linux or MacOS
|
|
|
|
|
|
-Elasticsearch is as a `.tar.gz` archive for Linux and MacOS.
|
|
|
+{es} is available as a `.tar.gz` archive for Linux and MacOS.
|
|
|
|
|
|
include::license.asciidoc[]
|
|
|
|
|
|
-The latest stable version of Elasticsearch can be found on the
|
|
|
-link:/downloads/elasticsearch[Download Elasticsearch] page.
|
|
|
+The latest stable version of {es} can be found on the
|
|
|
+link:/downloads/elasticsearch[Download {es}] page.
|
|
|
Other versions can be found on the
|
|
|
link:/downloads/past-releases[Past Releases page].
|
|
|
|
|
|
-NOTE: Elasticsearch includes a bundled version of https://openjdk.java.net[OpenJDK]
|
|
|
+NOTE: {es} includes a bundled version of https://openjdk.java.net[OpenJDK]
|
|
|
from the JDK maintainers (GPLv2+CE). To use your own version of Java,
|
|
|
see the <<jvm-version, JVM version requirements>>
|
|
|
|
|
@@ -19,13 +19,13 @@ see the <<jvm-version, JVM version requirements>>
|
|
|
|
|
|
ifeval::["{release-state}"=="unreleased"]
|
|
|
|
|
|
-Version {version} of Elasticsearch has not yet been released.
|
|
|
+Version {version} of {es} has not yet been released.
|
|
|
|
|
|
endif::[]
|
|
|
|
|
|
ifeval::["{release-state}"!="unreleased"]
|
|
|
|
|
|
-The Linux archive for Elasticsearch v{version} can be downloaded and installed as follows:
|
|
|
+The Linux archive for {es} v{version} can be downloaded and installed as follows:
|
|
|
|
|
|
["source","sh",subs="attributes"]
|
|
|
--------------------------------------------
|
|
@@ -46,13 +46,13 @@ endif::[]
|
|
|
|
|
|
ifeval::["{release-state}"=="unreleased"]
|
|
|
|
|
|
-Version {version} of Elasticsearch has not yet been released.
|
|
|
+Version {version} of {es} has not yet been released.
|
|
|
|
|
|
endif::[]
|
|
|
|
|
|
ifeval::["{release-state}"!="unreleased"]
|
|
|
|
|
|
-The MacOS archive for Elasticsearch v{version} can be downloaded and installed as follows:
|
|
|
+The MacOS archive for {es} v{version} can be downloaded and installed as follows:
|
|
|
|
|
|
["source","sh",subs="attributes"]
|
|
|
--------------------------------------------
|
|
@@ -80,6 +80,8 @@ endif::include-xpack[]
|
|
|
[[targz-running]]
|
|
|
include::targz-start.asciidoc[]
|
|
|
|
|
|
+:os-dir: $ES_HOME
|
|
|
+
|
|
|
include::check-running.asciidoc[]
|
|
|
|
|
|
Log printing to `stdout` can be disabled using the `-q` or `--quiet`
|
|
@@ -89,9 +91,9 @@ option on the command line.
|
|
|
include::targz-daemon.asciidoc[]
|
|
|
|
|
|
[[targz-configuring]]
|
|
|
-==== Configuring Elasticsearch on the command line
|
|
|
+==== Configure {es} on the command line
|
|
|
|
|
|
-Elasticsearch loads its configuration from the `$ES_HOME/config/elasticsearch.yml`
|
|
|
+{es} loads its configuration from the `$ES_HOME/config/elasticsearch.yml`
|
|
|
file by default. The format of this config file is explained in
|
|
|
<<settings>>.
|
|
|
|
|
@@ -115,7 +117,7 @@ directories are, by default, contained within `$ES_HOME` -- the directory
|
|
|
created when unpacking the archive.
|
|
|
|
|
|
This is very convenient because you don't have to create any directories to
|
|
|
-start using Elasticsearch, and uninstalling Elasticsearch is as easy as
|
|
|
+start using {es}, and uninstalling {es} is as easy as
|
|
|
removing the `$ES_HOME` directory. However, it is advisable to change the
|
|
|
default locations of the config directory, the data directory, and the logs
|
|
|
directory so that you do not delete important data later on.
|
|
@@ -125,7 +127,7 @@ directory so that you do not delete important data later on.
|
|
|
|=======================================================================
|
|
|
| Type | Description | Default Location | Setting
|
|
|
| home
|
|
|
- | Elasticsearch home directory or `$ES_HOME`
|
|
|
+ | {es} home directory or `$ES_HOME`
|
|
|
d| Directory created by unpacking the archive
|
|
|
|
|
|
|
|
|
@@ -140,6 +142,11 @@ directory so that you do not delete important data later on.
|
|
|
| $ES_HOME/config
|
|
|
| <<config-files-location,ES_PATH_CONF>>
|
|
|
|
|
|
+| conf
|
|
|
+ | Generated TLS keys and certificates for the transport and HTTP layer.
|
|
|
+ | $ES_HOME/config/tls_auto_config_<timestamp>
|
|
|
+ d|
|
|
|
+
|
|
|
| data
|
|
|
| The location of the data files of each index / shard allocated
|
|
|
on the node.
|
|
@@ -163,5 +170,5 @@ directory so that you do not delete important data later on.
|
|
|
|
|
|
|=======================================================================
|
|
|
|
|
|
-
|
|
|
+include::security-files-reference.asciidoc[]
|
|
|
include::next-steps.asciidoc[]
|