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

[DOCS-7859] Update keys.md #1564

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion search-services/latest/config/keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,18 @@ Before you start, you must already have OpenSSL and `keytool` available in your

By default, this creates a `keystores` folder in your current working directory.

> **Note:** If the `keystores` folder isn't empty, the script exits without producing any keystore or truststore. You can safely, remove the `keystores` folder if you need to re-run the script.
> **Note:** If the `keystores` folder isn't empty, the script exits without producing any keystore or truststore. You can safely, remove the `keystores` folder if you need to re-run the script. Also, you can delete the `ca` folder to avoid getting these errors in the console:
```
* Invalid switch - "*".
* A subdirectory or file ca\certs already exists.
* Error occurred while processing: ca\certs.
* A subdirectory or file ca\crl already exists.
* Error occurred while processing: ca\crl.
* A subdirectory or file ca\newcerts already exists.
* Error occurred while processing: ca\newcerts.
* A subdirectory or file ca\private already exists.
* Error occurred while processing: ca\private.
```

See [Keystore directory structure](#keystore-directory-structure) for more and [Customize certificate generation](#customizing-certificate-generation) for a full list of parameters that allow you to customize your certificates. It is recommended that you set your own passwords when generating certificates.

Expand Down