Skip to content

HBASE-27538 Document auto cert file reloading HBASE-27347 #4927

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

Merged
merged 1 commit into from
Dec 15, 2022
Merged
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
14 changes: 14 additions & 0 deletions src/main/asciidoc/_chapters/security.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,20 @@ restart fashion.
WARNING: Once `hbase.client.netty.tls.enabled` is enabled on the server side, the cluster will only be able to communicate
with other clusters which have TLS enabled. For example, this would impact inter-cluster replication.

=== Enable automatic certificate reloading

Certificates usually expire after some time to improve security. In this case we need to replace them by modifying
Keystore / Truststore files and HBase processes have to be restarted. In order to avoid that you can enable automatic
file change detection and certificate reloading with the following option. Default: false.

[source,xml]
----
<property>
<name>hbase.rpc.tls.certReload</name>
<value>true</value>
</property>
----

=== Additional configuration

==== Enabled protocols
Expand Down