This is an automated email from the ASF dual-hosted git repository.
alopresto pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/master by this push:
new 7d49401 Added note about unique initial user identity names to
walkthrough doc.
7d49401 is described below
commit 7d494011eaef030b28f390fd84ba74f664cd2fac
Author: Andy LoPresto <[email protected]>
AuthorDate: Thu Apr 30 12:36:30 2020 -0700
Added note about unique initial user identity names to walkthrough doc.
---
nifi-docs/src/main/asciidoc/walkthroughs.adoc | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/nifi-docs/src/main/asciidoc/walkthroughs.adoc
b/nifi-docs/src/main/asciidoc/walkthroughs.adoc
index 5ca32f1..22f5801 100644
--- a/nifi-docs/src/main/asciidoc/walkthroughs.adoc
+++ b/nifi-docs/src/main/asciidoc/walkthroughs.adoc
@@ -1044,7 +1044,10 @@ NOTE: The `nifi.cluster.load.balance.host=` entry must
be manually populated her
** `<property name="Connect String"></property>` -> `<property name="Connect
String">node1.nifi:2181,node2.nifi:2182,node3.nifi:2183</property>`
* `cp node1.nifi/conf/state-management.xml
node2.nifi/conf/state-management.xml` -- Copies the modified
`state-management.xml` file from `node1` to `node2`
* `cp node1.nifi/conf/state-management.xml
node3.nifi/conf/state-management.xml` -- Copies the modified
`state-management.xml` file from `node1` to `node3`
-. Update the `authorizers.xml` file. This file contains the *Initial Node
Identities* and *Initial User Identities*. The *users* consist of all human
users _and_ all nodes in the cluster. The `authorizers.xml` file can be
identical on each node (assuming no other changes were made), so the modified
file will be copied to the other nodes.
+. Update the `authorizers.xml` file. This file contains the *Initial Node
Identities* and *Initial User Identities*. The *users* consist of all human
users _and_ all nodes in the cluster. The `authorizers.xml` file can be
identical on each node (assuming no other changes were made), so the modified
file will be copied to the other nodes.
++
+NOTE: Each `Initial User Identity` must have a **unique** name (`Initial User
Identity 1`, `Initial User Identity 2`, etc.).
+
* `$EDITOR node1.nifi/conf/authorizers.xml` -- Opens the `authorizers.xml`
file in a text editor
* Update the following lines:
** In the `<userGroupProvider>` section, `<property name="Initial User
Identity 1"></property>` -> `<property name="Initial User Identity
1">CN=my_username</property>` -- Adds an initial user with the DN generated in
the client certificate
@@ -1105,4 +1108,4 @@ image::nifi-secure-cluster-status.png["NiFi secure
cluster status pane"]
_The running cluster with permissions_
image::nifi-secure-cluster-permissions.png["NiFi secure cluster running with
Initial Admin Identity permissions"]
---
\ No newline at end of file
+--