Skip to content
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