From c800fef34d73312282d21e9eff4add781e892411 Mon Sep 17 00:00:00 2001 From: Andrew Lim Date: Thu, 22 Oct 2020 11:33:03 -0400 Subject: [PATCH] NIFIREG-349 Add nifi.registry.bootstrap.sensitive.key to Bootstrap Properties section in Admin Guide --- .../src/main/asciidoc/administration-guide.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nifi-registry-core/nifi-registry-docs/src/main/asciidoc/administration-guide.adoc b/nifi-registry-core/nifi-registry-docs/src/main/asciidoc/administration-guide.adoc index 194164674..251005838 100644 --- a/nifi-registry-core/nifi-registry-docs/src/main/asciidoc/administration-guide.adoc +++ b/nifi-registry-core/nifi-registry-docs/src/main/asciidoc/administration-guide.adoc @@ -865,6 +865,9 @@ Here, we will address the different properties that are made available in the fi |`conf.dir`|The `conf` directory to use for NiFi Registry. By default, this is set to `./conf` |`graceful.shutdown.seconds`|When NiFi Registry is instructed to shutdown, the Bootstrap will wait this number of seconds for the process to shutdown cleanly. At this amount of time, if the service is still running, the Bootstrap will `kill` the process, or terminate it abruptly. By default, this is set to `20`. |`java.arg.N`|Any number of JVM arguments can be passed to the NiFi Registry JVM when the process is started. These arguments are defined by adding properties to _bootstrap.conf_ that begin with `java.arg.`. The rest of the property name is not relevant, other than to different property names, and will be ignored. The default includes properties for minimum and maximum Java Heap size, the garbage collector to use, etc. +|`nifi.registry.bootstrap.sensitive.key`|The root key (in hexadecimal format) for encrypted sensitive configuration values. When NiFi Registry is started, this root key is used to decrypt sensitive values from the _nifi-registry.properties_ file into memory for later use. + +The <> can be used to specify the root key, encrypt sensitive values in _nifi-registry.properties_ and update _bootstrap.conf_. |====