Skip to content

Commit 3127d42

Browse files
committed
errors batch
1 parent 513a428 commit 3127d42

31 files changed

+54
-48
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
When you start {{es}} for the first time, the following security configuration occurs automatically:
22

3-
* [Certificates and keys](../../../deploy-manage/security/security-certificates-keys.md#stack-security-certificates) for TLS are generated for the transport and HTTP layers.
3+
* [Certificates and keys](/deploy-manage/security/security-certificates-keys.md#stack-security-certificates) for TLS are generated for the transport and HTTP layers.
44
* The TLS configuration settings are written to `elasticsearch.yml`.
55
* A password is generated for the `elastic` user.
66
* An enrollment token is generated for {{kib}}, which is valid for 30 minutes.
77

88
You can then start {{kib}} and enter the enrollment token. This token automatically applies the security settings from your {{es}} cluster, authenticates to {{es}} with the built-in `kibana` service account, and writes the security configuration to `kibana.yml`.
99

1010
::::{note}
11-
There are [some cases](../../../deploy-manage/security/security-certificates-keys.md#stack-skip-auto-configuration) where security can’t be configured automatically because the node startup process detects that the node is already part of a cluster, or that security is already configured or explicitly disabled.
11+
There are [some cases](/deploy-manage/security/security-certificates-keys.md#stack-skip-auto-configuration) where security can’t be configured automatically because the node startup process detects that the node is already part of a cluster, or that security is already configured or explicitly disabled.
1212
::::
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
You now have a test {{es}} environment set up. Before you start serious development or go into production with {{es}}, you must do some additional setup:
22

3-
* Learn how to [configure {{es}}](configure-elasticsearch.md).
4-
* Configure [important {{es}} settings](important-settings-configuration.md).
5-
* Configure [important system settings](important-system-configuration.md).
3+
* Learn how to [configure {{es}}](/deploy-manage/deploy/self-managed/configure-elasticsearch.md).
4+
* Configure [important {{es}} settings](/deploy-manage/deploy/self-managed/important-settings-configuration.md).
5+
* Configure [important system settings](/deploy-manage/deploy/self-managed/important-system-configuration.md).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
::::{note}
2-
{{es}} includes a bundled version of [OpenJDK](https://openjdk.java.net) from the JDK maintainers (GPLv2+CE). To use your own version of Java, see the [JVM version requirements](installing-elasticsearch.md#jvm-version).
2+
{{es}} includes a bundled version of [OpenJDK](https://openjdk.java.net) from the JDK maintainers (GPLv2+CE). To use your own version of Java, see the [JVM version requirements](/deploy-manage/deploy/self-managed/installing-elasticsearch.md#jvm-version).
33
::::

deploy-manage/deploy/self-managed/_snippets/pw-env-var.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ We recommend storing the `elastic` password as an environment variable in your s
66
{{export}}ELASTIC_PASSWORD="your_password"
77
```
88

9-
If you have password-protected the {{es}} keystore, you will be prompted to enter the keystore’s password. See [Secure settings](../../security/secure-settings.md) for more details.
9+
If you have password-protected the {{es}} keystore, you will be prompted to enter the keystore’s password. See [Secure settings](/deploy-manage/security/secure-settings.md) for more details.
1010

1111
To learn how to reset this password, refer to [](/deploy-manage/users-roles/cluster-or-deployment-auth/built-in-sm.md).

deploy-manage/deploy/self-managed/_snippets/security-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ When you install {{es}}, the following certificates and keys are generated in th
99
`transport.p12`
1010
: Keystore that contains the key and certificate for the transport layer for all the nodes in your cluster.
1111

12-
`http.p12` and `transport.p12` are password-protected PKCS#12 keystores. {{es}} stores the passwords for these keystores as [secure settings](../../security/secure-settings.md). To retrieve the passwords so that you can inspect or change the keystore contents, use the [`bin/elasticsearch-keystore`](asciidocalypse://docs/elasticsearch/docs/reference/elasticsearch/command-line-tools/elasticsearch-keystore.md) tool.
12+
`http.p12` and `transport.p12` are password-protected PKCS#12 keystores. {{es}} stores the passwords for these keystores as [secure settings](/deploy-manage/security/secure-settings.md). To retrieve the passwords so that you can inspect or change the keystore contents, use the [`bin/elasticsearch-keystore`](asciidocalypse://docs/elasticsearch/docs/reference/elasticsearch/command-line-tools/elasticsearch-keystore.md) tool.
1313

1414
Use the following command to retrieve the password for `http.p12`:
1515

deploy-manage/deploy/self-managed/_snippets/start-local.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
::::{warning}
22
**DO NOT USE THESE INSTRUCTIONS FOR PRODUCTION DEPLOYMENTS**
33

4-
The instructions on this page are for **local development only**. Do not use this configuration for production deployments, because it is not secure. Refer to [deployment options](../../get-started/deployment-options.md) for a list of production deployment options.
4+
The instructions on this page are for **local development only**. Do not use this configuration for production deployments, because it is not secure. Refer to [](/get-started/deployment-options.md) for a list of production deployment options.
55

66
::::
77

deploy-manage/deploy/self-managed/_snippets/targz-daemon.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ To run {{es}} as a daemon, specify `-d` on the command line, and record the proc
44
./bin/elasticsearch -d -p pid
55
```
66

7-
If you have password-protected the {{es}} keystore, you will be prompted to enter the keystore’s password. See [Secure settings](../../security/secure-settings.md) for more details.
7+
If you have password-protected the {{es}} keystore, you will be prompted to enter the keystore’s password. See [Secure settings](/deploy-manage/security/secure-settings.md) for more details.
88

99
Log messages can be found in the `$ES_HOME/logs/` directory.
1010

@@ -15,5 +15,5 @@ pkill -F pid
1515
```
1616

1717
::::{note}
18-
The {{es}} `.tar.gz` package does not include the `systemd` module. To manage {{es}} as a service, use the [Debian](../../maintenance/start-stop-services/start-stop-elasticsearch.md#start-deb) or [RPM](../../maintenance/start-stop-services/start-stop-elasticsearch.md#start-rpm) package instead.
18+
The {{es}} `.tar.gz` package does not include the `systemd` module. To manage {{es}} as a service, use the [Debian](/deploy-manage/deploy/self-managed/install-with-debian-package.md) or [RPM](/deploy-manage/deploy/self-managed/install-with-rpm.md) package instead.
1919
::::

deploy-manage/deploy/self-managed/_snippets/targz-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Run the following command to start {{es}} from the command line:
33
```sh
44
./bin/elasticsearch
55
```
6-
By default, {{es}} prints its logs to the console (`stdout`) and to the `<cluster name>.log` file within the [logs directory](important-settings-configuration.md#path-settings). {{es}} logs some information while it is starting, but after it has finished initializing it will continue to run in the foreground and won’t log anything further until something happens that is worth recording. While {{es}} is running you can interact with it through its HTTP interface which is on port `9200` by default.
6+
By default, {{es}} prints its logs to the console (`stdout`) and to the `<cluster name>.log` file within the [logs directory](/deploy-manage/deploy/self-managed/important-settings-configuration.md#path-settings). {{es}} logs some information while it is starting, but after it has finished initializing it will continue to run in the foreground and won’t log anything further until something happens that is worth recording. While {{es}} is running you can interact with it through its HTTP interface which is on port `9200` by default.
77

88
To stop {{es}}, press `Ctrl-C`.
99

deploy-manage/deploy/self-managed/_snippets/zip-windows-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ Run the following command to start {{es}} from the command line:
44
.\bin\elasticsearch.bat
55
```
66

7-
By default {{es}} prints its logs to the console (`STDOUT`) and to the `<cluster name>.log` file within the [logs directory](important-settings-configuration.md#path-settings). {{es}} logs some information while it is starting, but after it has finished initializing it will continue to run in the foreground and won’t log anything further until something happens that is worth recording. While {{es}} is running you can interact with it through its HTTP interface which is on port `9200` by default.
7+
By default {{es}} prints its logs to the console (`STDOUT`) and to the `<cluster name>.log` file within the [logs directory](/deploy-manage/deploy/self-managed/important-settings-configuration.md#path-settings). {{es}} logs some information while it is starting, but after it has finished initializing it will continue to run in the foreground and won’t log anything further until something happens that is worth recording. While {{es}} is running you can interact with it through its HTTP interface which is on port `9200` by default.
88

99
To stop {{es}}, press `Ctrl-C`.

deploy-manage/deploy/self-managed/bootstrap-checks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ To pass the maximum size virtual memory check, you must configure your system to
103103

104104
$$$bootstrap-checks-max-map-count$$$
105105

106-
Continuing from the previous [point](max-size-virtual-memory-check.md), to use `mmap` effectively, {{es}} also requires the ability to create many memory-mapped areas. The maximum map count check checks that the kernel allows a process to have at least 262,144 memory-mapped areas and is enforced on Linux only.
106+
In addition to [unlimited address space](#max-size-virtual-memory-check), to use `mmap` effectively, {{es}} also requires the ability to create many memory-mapped areas. The maximum map count check checks that the kernel allows a process to have at least 262,144 memory-mapped areas and is enforced on Linux only.
107107

108108
To pass the maximum map count check, you must configure `vm.max_map_count` via `sysctl` to be at least `262144`.
109109

@@ -174,7 +174,7 @@ This bootstrap check ensures that discovery is not running with the default conf
174174
* `discovery.seed_providers`
175175
* `cluster.initial_master_nodes`
176176

177-
Note that you must [remove `cluster.initial_master_nodes` from the configuration of every node](important-settings-configuration.md#initial_master_nodes) after the cluster has started for the first time. Instead, configure `discovery.seed_hosts` or `discovery.seed_providers`. If you do not need any discovery configuration, for instance if running a single-node cluster, set `discovery.seed_hosts: []` to disable discovery and satisfy this bootstrap check.
177+
Note that you must [remove `cluster.initial_master_nodes` from the configuration of every node](/deploy-manage/deploy/self-managed/important-settings-configuration.md#initial_master_nodes) after the cluster has started for the first time. Instead, configure `discovery.seed_hosts` or `discovery.seed_providers`. If you do not need any discovery configuration, for instance if running a single-node cluster, set `discovery.seed_hosts: []` to disable discovery and satisfy this bootstrap check.
178178
:::
179179

180180
:::{dropdown} Encrypt sensitive data check

0 commit comments

Comments
 (0)