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

Add known issue for 6.4 #33174

Merged
merged 2 commits into from
Aug 28, 2018
Merged
Changes from 1 commit
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
14 changes: 14 additions & 0 deletions docs/reference/release-notes/6.4.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,20 @@
[[release-notes-6.4.0]]
== {es} version 6.4.0

[float]
=== Known issues

{es} 6.4.0 fails to start when PEM encoded private key files that have been exported from `PKCS#12`
keystores are in use. These files can be identified by the existence of lines that start with either
`Bag Attributes` or `Key Attributes` in the beginning of the key file.

These keys can be converted to a supported format using one of the following methods:

* Remove the extra lines from the beginning of the file so that the file starts with the line that starts
with `-----BEGIN`
* Use openssl to convert it, i.e: `openssl pkcs8 -in old_format.key -topk8 -nocrypt -out new_format.key`
assuming the key was not password protected.

Also see <<breaking-changes-6.4>>.

[float]
Expand Down