Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[7.14] [DOCS] Steps for updating TLS certificates (#73781) #75813

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions x-pack/docs/en/security/index.asciidoc
Expand Up @@ -92,6 +92,8 @@ See <<enable-audit-logging,Enable audit logging>>.

include::configuring-stack-security.asciidoc[]

include::securing-communications/update-tls-certificates.asciidoc[]

include::authentication/overview.asciidoc[]

include::authorization/overview.asciidoc[]
Expand Down
Expand Up @@ -91,16 +91,17 @@ generate a CA for your cluster.
----
./bin/elasticsearch-certutil cert --ca elastic-stack-ca.p12
----
+
`--ca <ca_file>`:: Name of the CA file used to sign your certificates. The
default file name from the `elasticsearch-certutil` tool is `elastic-stack-ca.p12`.
+

a. Enter the password for your CA, or press *Enter* if you did not configure one in the previous step.

b. Create a password for the certificate and accept the default file name.
+
The output file is a keystore named `elastic-certificates.p12`. This file
contains a node certificate, node key, and CA certificate.
+
`--ca <ca_file>`:: Name of the CA file used to sign your certificates. The
default file name from the `elasticsearch-certutil` tool is `elastic-stack-ca.p12`.

. Copy the `elastic-certificates.p12` file to the `ES_PATH_CONF`
directory on every node in your cluster.
Expand Down