<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368021#M240033</link>
    <description>&lt;P&gt;Hello, I have a 3 node NiFi Cluster up and running.&amp;nbsp; The Initial Admin User is able now to successfully log into the NiFi cluster.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would now like to add new users to the NiFi cluster and SSL i.e., signed PKI certs for each user as the basis for these users to gain access to NiFi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not want to use LDAP, I am in an environment that will require use of PKI certs for access to NiFi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone provide a prescriptive set of steps I can follow to successfully use PKI certs/SSL as a means of providing access to new NiFi cluster users and specifically, how do I add new users?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would think the process of creating new users and using SSL would be explained explicitly.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone help me with this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;</description>
    <pubDate>Sat, 08 Apr 2023 17:05:33 GMT</pubDate>
    <dc:creator>davehkd</dc:creator>
    <dc:date>2023-04-08T17:05:33Z</dc:date>
    <item>
      <title>Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368021#M240033</link>
      <description>&lt;P&gt;Hello, I have a 3 node NiFi Cluster up and running.&amp;nbsp; The Initial Admin User is able now to successfully log into the NiFi cluster.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would now like to add new users to the NiFi cluster and SSL i.e., signed PKI certs for each user as the basis for these users to gain access to NiFi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not want to use LDAP, I am in an environment that will require use of PKI certs for access to NiFi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone provide a prescriptive set of steps I can follow to successfully use PKI certs/SSL as a means of providing access to new NiFi cluster users and specifically, how do I add new users?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would think the process of creating new users and using SSL would be explained explicitly.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone help me with this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2023 17:05:33 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368021#M240033</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-08T17:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368161#M240082</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/102685"&gt;@davehkd&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Your corporate PKI certs are just certs signed by your corporate signing authority.&amp;nbsp; So really nothing needs to change in the configuration of your NiFi.&amp;nbsp; However, you will need to add your corporate signing authorities public certificate to the truststore.jks used by your NiFi.&lt;BR /&gt;&lt;BR /&gt;When you access the NiFi UI a mutual TLS exchange occurs.&amp;nbsp; You client (browser) initiates the connection with a client Hello to which the server will respond with a server Hello.&amp;nbsp; In that server hello a list of certificate authorities (comes from CAs in the NiFi truststore) will be provided to back to the client.&amp;nbsp; &amp;nbsp;This tells the client that it will only accept a client certificate signed by one of those authorities.&amp;nbsp; If the client (your browser) has a pki certificate loaded that was signed by one of those trusted authorities, that client certificate can be used to complete the mutual TLS exchange.&amp;nbsp; Much more happens in the Mutual TLS client server handshake, but i'll just stick to the certificate specifics here.&lt;BR /&gt;&lt;BR /&gt;NiFi does nothing out of spec when it comes to certificates and NiFi has nothing to do with creating users.&amp;nbsp; You can create your own self signed certificates created via command line tools, use a public signing authority to create signed certificates, or in your case use your corporate signing authority to create certificates.&amp;nbsp; A java keystore is nothing more than a container that can hold 1 too many certificates.&lt;BR /&gt;&lt;BR /&gt;Only requirement NiFi has with regards to the keystore it that it contains only 1 PrivateKeyEntry (private cert).&amp;nbsp; The truststore (just another keystore) can contain 1 too many trustedCertEntries (public certs) and often contains many public intermediate and root CAs.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="batang,apple gothic"&gt;If you found that the provided solution(s) assisted you with your query, please take a moment to login and click&lt;/FONT&gt;&amp;nbsp;&lt;FONT face="arial black,avant garde" color="#FF0000"&gt;Accept as Solution&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="batang,apple gothic" color="#000000"&gt;below each response that helped.&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="batang,apple gothic" color="#000000"&gt;Matt&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2023 20:49:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368161#M240082</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2023-04-10T20:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368199#M240093</link>
      <description>&lt;P&gt;Thanks for the reply Matt.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I followed the instructions per:&amp;nbsp;&amp;nbsp;&lt;A href="https://nifi.apache.org/docs/nifi-docs/html/walkthroughs.html#securing-nifi-with-provided-certificates" target="_blank"&gt;https://nifi.apache.org/docs/nifi-docs/html/walkthroughs.html#securing-nifi-with-provided-certificates, s&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Specifically, I followed the instructions for:&amp;nbsp; Creating and Securing a NiFi Cluster with the TLS Toolkit.&lt;/P&gt;&lt;P&gt;Per Step 1, I ran the optional command to execute all steps together using the the toolkit pattern syntax:&lt;/P&gt;&lt;P&gt;./bin/tls-toolkit.sh standalone - n 'node[1-3].nifi' -C 'CN=ec2-user' -c 'ca.nifi'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Per step 9, I updated the authorizers.xml file, in the &amp;lt;userGroupProvider&amp;gt; section, I added the line&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;property name="Initial User Identity 1"&amp;gt;CN=ec2-user&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;In the &amp;lt;accessPolicyProvider&amp;gt; section, I updated the file as described.&amp;nbsp; Regarding the Initial Admin Identity, I updated the file as follows:&lt;/P&gt;&lt;P&gt;&amp;lt;property name="Initial Admin Identity"&amp;gt;CN=ec2-user&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I copied the authorizers.xml file to all 3 nodes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After starting nifi on all 3 nodes, I then access the GUI and select the imported certificate i.e., CN=ec2-user.p12 which I successfully imported, and I can successfully access the GUI.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see that on the upper right of the GUI screen, the the user is indicated as CN=ec2-user.&amp;nbsp; But, when I access the menu on the upper right of the screen, I do not receive the users option.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help me determine why this option isn't available?&amp;nbsp; &amp;nbsp;I am unclear, having followed the instructions per the walkthrough, why this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 09:43:03 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368199#M240093</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-11T09:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368205#M240096</link>
      <description>&lt;P&gt;To add:&amp;nbsp; At step 13, per the walkthrough i.e., NiFi Cluster Using NiFi CA, as described, I stopped each of the nifi instances, i then deleted the authorizations.xml and users.xml file from each node in the nifi/conf directory, and then restarted each node.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And, then I logged onto the NiFi GUI, and still I do not see the users option in the menu...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i.e., I apparently do not have a a running cluster with permisisons....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 10:21:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368205#M240096</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-11T10:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368213#M240100</link>
      <description>&lt;P&gt;Matt, I found this ticket:&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;NIFI 1.14: User policy is not showing on the GUI.&amp;nbsp; This is exactly the issue I am having.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I see that you recommended that he:&amp;nbsp; verify the configuration in the authorizers.xml file, remove the existing users.xml and authorizations.xml file and restart NiFi.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I took these steps several times and still the "Users" option does not appear in the menu.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 11:55:45 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368213#M240100</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-11T11:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368255#M240113</link>
      <description>&lt;P&gt;An update:&amp;nbsp; So, after starting NiFi, i reviewed the logs in the nifi-user.log file.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what was output:&lt;/P&gt;&lt;P&gt;...NiFi AuthenticationFilter Authentication Started 10.xx.xxx.39 [CN=ec2-user] POST &lt;A href="https://nifi1:9443/nifi-api/access/kerberos" target="_blank"&gt;https://nifi1:9443/nifi-api/access/kerberos&lt;/A&gt;&lt;/P&gt;&lt;P&gt;...NiFi AuthenticationFilter Authentication Success [CN=ec2-user]&amp;nbsp; xx.xx.xxx.39 POST &lt;A href="https://nifi1:9443/nifi-api/access/kerberos" target="_blank"&gt;https://nifi1:9443/nifi-api/access/kerberos&lt;/A&gt;&lt;/P&gt;&lt;P&gt;...NiFi AuthenticationFilter Authentication Started 10.xx.xxx.39 [CN=ec2-user] POST &lt;A href="https://nifi1:9443/nifi-api/access/kerberos" target="_blank"&gt;https://nifi1:9443/nifi-api/access/oidc/exchange&lt;/A&gt;&lt;/P&gt;&lt;P&gt;...NiFi AuthenticationFilter Authentication Success [CN=ec2-user]&amp;nbsp; xx.xx.xxx.39 POST &lt;A href="https://nifi1:9443/nifi-api/access/kerberos" target="_blank"&gt;https://nifi1:9443/nifi-api/access/oidc/exchange&lt;/A&gt;&lt;/P&gt;&lt;P&gt;...NiFi AuthenticationFilter Authentication Started 10.xx.xxx.39 [CN=ec2-user] POST &lt;A href="https://nifi1:9443/nifi-api/access/kerberos" target="_blank"&gt;https://nifi1:9443/nifi-api/token/expiration&lt;/A&gt;&lt;/P&gt;&lt;P&gt;...NiFi AuthenticationFilter Authentication Success [CN=ec2-user]&amp;nbsp; xx.xx.xxx.39 POST &lt;A href="https://nifi1:9443/nifi-api/access/kerberos" target="_blank"&gt;https://nifi1:9443/nifi-api/token/expiration&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WARN [NiFi Web Server-37] o.a.n.w.a.c.IllegalStateExceptionMapper java.lang.IllegalStateException:&amp;nbsp; Access token not found.&amp;nbsp; Returning Conflict responmse...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 16:18:32 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368255#M240113</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-11T16:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368258#M240114</link>
      <description>&lt;P&gt;Another update:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I looked in the authorizations.xml file and see that the user ec2-user has the following authorizations:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;flow&amp;nbsp; action "R"&lt;/P&gt;&lt;P&gt;data/process-groups/ action "R"&lt;/P&gt;&lt;P&gt;data/process-groups action "W"&lt;/P&gt;&lt;P&gt;process-groups action "R"&lt;/P&gt;&lt;P&gt;process-groups action "W"&lt;/P&gt;&lt;P&gt;restricted-components "W"&lt;/P&gt;&lt;P&gt;tenants actions "R" and "W"&lt;/P&gt;&lt;P&gt;policies actions "R" and "W"&lt;/P&gt;&lt;P&gt;controller actions "R" and "W"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 16:38:34 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368258#M240114</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-11T16:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368292#M240119</link>
      <description>&lt;P&gt;I changed the name of the nifi user from ec2-user to nifi thinking that perhaps the - was causing an issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Specifically, I g&lt;SPAN&gt;enerated the client certificate keystore from the client certificate and key using the following command:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;openssl pkcs12 -export -out CN=nifi.p12 -inkey client.key -in client.pem&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I then logged into the nifi gui and selected the certificate i.e., CN=nifi.p12.&amp;nbsp; And no luck, the users option is not available on the global menu.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here is output from the nifi-users.log&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2023-04-12 07:08:50,575 INFO [main] o.a.n.a.single.user.SingleUserAuthorizer Initializing Authorizer&lt;BR /&gt;2023-04-12 07:08:50,644 INFO [main] o.a.n.a.FileUserGroupProvider Creating new users file at /home/ec2-user/nifi/./conf/users.xml&lt;BR /&gt;2023-04-12 07:08:50,663 INFO [main] o.a.n.a.FileUserGroupProvider Users/Groups file loaded at Wed Apr 12 07:08:50 UTC 2023&lt;BR /&gt;2023-04-12 07:08:50,663 INFO [main] o.a.n.a.FileAccessPolicyProvider Creating new authorizations file at /home/ec2-user/nifi/./conf/authorizations.xml&lt;BR /&gt;2023-04-12 07:08:50,667 INFO [main] o.a.n.a.FileAccessPolicyProvider Added mapped node CN=nifi1, OU=NIFI (raw node identity CN=nifi1, OU=NIFI)&lt;BR /&gt;2023-04-12 07:08:50,667 INFO [main] o.a.n.a.FileAccessPolicyProvider Added mapped node CN=nifi3, OU=NIFI (raw node identity CN=nifi3, OU=NIFI)&lt;BR /&gt;2023-04-12 07:08:50,667 INFO [main] o.a.n.a.FileAccessPolicyProvider Added mapped node CN=nifi2, OU=NIFI (raw node identity CN=nifi2, OU=NIFI)&lt;BR /&gt;2023-04-12 07:08:51,201 INFO [main] o.a.n.a.FileAccessPolicyProvider Populating authorizations for Initial Admin: CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US&lt;BR /&gt;2023-04-12 07:08:51,211 INFO [main] o.a.n.a.FileAccessPolicyProvider Authorizations file loaded at Wed Apr 12 07:08:51 UTC 2023&lt;BR /&gt;2023-04-12 07:08:51,213 INFO [main] o.a.n.a.single.user.SingleUserAuthorizer Configuring Authorizer&lt;BR /&gt;2023-04-12 07:13:20,075 INFO [NiFi Web Server-18] o.a.n.w.s.NiFiAuthenticationFilter Authentication Started 10.0.1.155 [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] POST &lt;A href="https://nifi1:9443/nifi-api/access/kerberos" target="_blank"&gt;https://nifi1:9443/nifi-api/access/kerberos&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:20,083 INFO [NiFi Web Server-18] o.a.n.w.s.NiFiAuthenticationFilter Authentication Success [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] 10.0.1.155 POST &lt;A href="https://nifi1:9443/nifi-api/access/kerberos" target="_blank"&gt;https://nifi1:9443/nifi-api/access/kerberos&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:20,358 INFO [NiFi Web Server-9589] o.a.n.w.s.NiFiAuthenticationFilter Authentication Started 10.0.1.155 [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] POST &lt;A href="https://nifi1:9443/nifi-api/access/oidc/exchange" target="_blank"&gt;https://nifi1:9443/nifi-api/access/oidc/exchange&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:20,358 INFO [NiFi Web Server-9589] o.a.n.w.s.NiFiAuthenticationFilter Authentication Success [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] 10.0.1.155 POST &lt;A href="https://nifi1:9443/nifi-api/access/oidc/exchange" target="_blank"&gt;https://nifi1:9443/nifi-api/access/oidc/exchange&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:20,383 INFO [NiFi Web Server-9579] o.a.n.w.s.NiFiAuthenticationFilter Authentication Started 10.0.1.155 [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] GET &lt;A href="https://nifi1:9443/nifi-api/access/token/expiration" target="_blank"&gt;https://nifi1:9443/nifi-api/access/token/expiration&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:20,383 INFO [NiFi Web Server-9579] o.a.n.w.s.NiFiAuthenticationFilter Authentication Success [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] 10.0.1.155 GET &lt;A href="https://nifi1:9443/nifi-api/access/token/expiration" target="_blank"&gt;https://nifi1:9443/nifi-api/access/token/expiration&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:20,440 WARN [NiFi Web Server-9579] o.a.n.w.a.c.IllegalStateExceptionMapper java.lang.IllegalStateException: Access Token not found. Returning Conflict response.&lt;BR /&gt;java.lang.IllegalStateException: Access Token not found&lt;BR /&gt;at org.apache.nifi.web.api.AccessResource.getAccessTokenExpiration(AccessResource.java:459)&lt;BR /&gt;at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)&lt;BR /&gt;at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)&lt;BR /&gt;at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)&lt;BR /&gt;at java.lang.reflect.Method.invoke(Method.java:498)&lt;BR /&gt;at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52)&lt;BR /&gt;at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:134)&lt;BR /&gt;at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:177)&lt;BR /&gt;at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$ResponseOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:176)&lt;BR /&gt;at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:81)&lt;BR /&gt;at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:475)&lt;BR /&gt;at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:397)&lt;BR /&gt;at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:81)&lt;BR /&gt;at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:255)&lt;BR /&gt;at org.glassfish.jersey.internal.Errors$1.call(Errors.java:248)&lt;BR /&gt;at org.glassfish.jersey.internal.Errors$1.call(Errors.java:244)&lt;BR /&gt;at org.glassfish.jersey.internal.Errors.process(Errors.java:292)&lt;BR /&gt;at org.glassfish.jersey.internal.Errors.process(Errors.java:274)&lt;BR /&gt;at org.glassfish.jersey.internal.Errors.process(Errors.java:244)&lt;BR /&gt;at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:265)&lt;BR /&gt;at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:234)&lt;BR /&gt;at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:684)&lt;BR /&gt;at org.glassfish.jersey.servlet.WebComponent.serviceImpl(WebComponent.java:394)&lt;BR /&gt;at org.glassfish.jersey.servlet.WebComponent.service(WebComponent.java:346)&lt;BR /&gt;at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:358)&lt;BR /&gt;at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:311)&lt;BR /&gt;at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:205)&lt;BR /&gt;at org.eclipse.jetty.servlet.ServletHolder$NotAsync.service(ServletHolder.java:1459)&lt;BR /&gt;at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:799)&lt;BR /&gt;at org.eclipse.jetty.servlet.ServletHandler$ChainEnd.doFilter(ServletHandler.java:1656)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:352)&lt;BR /&gt;at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:361)&lt;BR /&gt;at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126)&lt;BR /&gt;at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:361)&lt;BR /&gt;at org.apache.nifi.web.security.log.AuthenticationUserFilter.doFilterInternal(AuthenticationUserFilter.java:57)&lt;BR /&gt;at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:361)&lt;BR /&gt;at org.springframework.security.oauth2.server.resource.web.authentication.BearerTokenAuthenticationFilter.doFilterInternal(BearerTokenAuthenticationFilter.java:132)&lt;BR /&gt;at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:361)&lt;BR /&gt;at org.apache.nifi.web.security.NiFiAuthenticationFilter.authenticate(NiFiAuthenticationFilter.java:94)&lt;BR /&gt;at org.apache.nifi.web.security.NiFiAuthenticationFilter.doFilter(NiFiAuthenticationFilter.java:56)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:361)&lt;BR /&gt;at org.springframework.security.web.csrf.CsrfFilter.doFilterInternal(CsrfFilter.java:117)&lt;BR /&gt;at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:361)&lt;BR /&gt;at org.apache.nifi.web.security.csrf.SkipReplicatedCsrfFilter.doFilterInternal(SkipReplicatedCsrfFilter.java:59)&lt;BR /&gt;at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:361)&lt;BR /&gt;at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62)&lt;BR /&gt;at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:361)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:225)&lt;BR /&gt;at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:190)&lt;BR /&gt;at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:354)&lt;BR /&gt;at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:267)&lt;BR /&gt;at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:193)&lt;BR /&gt;at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1626)&lt;BR /&gt;at org.apache.nifi.web.filter.ExceptionFilter.doFilter(ExceptionFilter.java:46)&lt;BR /&gt;at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:201)&lt;BR /&gt;at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1626)&lt;BR /&gt;at org.eclipse.jetty.servlets.DoSFilter.doFilterChain(DoSFilter.java:487)&lt;BR /&gt;at org.apache.nifi.web.server.filter.DataTransferExcludedDoSFilter.doFilterChain(DataTransferExcludedDoSFilter.java:51)&lt;BR /&gt;at org.eclipse.jetty.servlets.DoSFilter.doFilter(DoSFilter.java:336)&lt;BR /&gt;at org.eclipse.jetty.servlets.DoSFilter.doFilter(DoSFilter.java:301)&lt;BR /&gt;at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:193)&lt;BR /&gt;at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1626)&lt;BR /&gt;at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)&lt;BR /&gt;at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)&lt;BR /&gt;at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)&lt;BR /&gt;at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:193)&lt;BR /&gt;at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1626)&lt;BR /&gt;at org.apache.nifi.web.server.log.RequestAuthenticationFilter.doFilterInternal(RequestAuthenticationFilter.java:59)&lt;BR /&gt;at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)&lt;BR /&gt;at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:193)&lt;BR /&gt;at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1626)&lt;BR /&gt;at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:552)&lt;BR /&gt;at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:143)&lt;BR /&gt;at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:600)&lt;BR /&gt;at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)&lt;BR /&gt;at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:235)&lt;BR /&gt;at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1624)&lt;BR /&gt;at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233)&lt;BR /&gt;at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1440)&lt;BR /&gt;at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188)&lt;BR /&gt;at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:505)&lt;BR /&gt;at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1594)&lt;BR /&gt;at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186)&lt;BR /&gt;at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1355)&lt;BR /&gt;at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)&lt;BR /&gt;at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146)&lt;BR /&gt;at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:772)&lt;BR /&gt;at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:191)&lt;BR /&gt;at org.eclipse.jetty.server.handler.HandlerList.handle(HandlerList.java:59)&lt;BR /&gt;at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)&lt;BR /&gt;at org.eclipse.jetty.server.Server.handle(Server.java:516)&lt;BR /&gt;at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:487)&lt;BR /&gt;at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:732)&lt;BR /&gt;at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:479)&lt;BR /&gt;at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)&lt;BR /&gt;at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)&lt;BR /&gt;at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)&lt;BR /&gt;at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:555)&lt;BR /&gt;at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:410)&lt;BR /&gt;at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:164)&lt;BR /&gt;at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)&lt;BR /&gt;at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)&lt;BR /&gt;at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:338)&lt;BR /&gt;at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:315)&lt;BR /&gt;at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173)&lt;BR /&gt;at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:131)&lt;BR /&gt;at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:409)&lt;BR /&gt;at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883)&lt;BR /&gt;at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034)&lt;BR /&gt;at java.lang.Thread.run(Thread.java:750)&lt;BR /&gt;2023-04-12 07:13:20,453 INFO [NiFi Web Server-9589] o.a.n.w.s.NiFiAuthenticationFilter Authentication Started 10.0.1.155 [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] GET &lt;A href="https://nifi1:9443/nifi-api/flow/current-user" target="_blank"&gt;https://nifi1:9443/nifi-api/flow/current-user&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:20,454 INFO [NiFi Web Server-9589] o.a.n.w.s.NiFiAuthenticationFilter Authentication Success [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] 10.0.1.155 GET &lt;A href="https://nifi1:9443/nifi-api/flow/current-user" target="_blank"&gt;https://nifi1:9443/nifi-api/flow/current-user&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:21,189 INFO [NiFi Web Server-9579] o.a.n.w.s.NiFiAuthenticationFilter Authentication Started 10.0.1.10 [&amp;lt;CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US&amp;gt;&amp;lt;CN=nifi1, OU=HR, O=snyderinc, L=Ashburn, ST=Virginia, C=US&amp;gt;] GET &lt;A href="https://nifi1:9443/nifi-api/flow/current-user" target="_blank"&gt;https://nifi1:9443/nifi-api/flow/current-user&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:21,193 INFO [NiFi Web Server-9579] o.a.n.w.s.NiFiAuthenticationFilter Authentication Success [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] 10.0.1.10 GET &lt;A href="https://nifi1:9443/nifi-api/flow/current-user" target="_blank"&gt;https://nifi1:9443/nifi-api/flow/current-user&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:21,656 INFO [NiFi Web Server-9584] o.a.n.w.s.NiFiAuthenticationFilter Authentication Started 10.0.1.155 [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] GET &lt;A href="https://nifi1:9443/nifi-api/access/config" target="_blank"&gt;https://nifi1:9443/nifi-api/access/config&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:21,656 INFO [NiFi Web Server-9584] o.a.n.w.s.NiFiAuthenticationFilter Authentication Success [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] 10.0.1.155 GET &lt;A href="https://nifi1:9443/nifi-api/access/config" target="_blank"&gt;https://nifi1:9443/nifi-api/access/config&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:21,657 INFO [NiFi Web Server-9579] o.a.n.w.s.NiFiAuthenticationFilter Authentication Started 10.0.1.155 [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] GET &lt;A href="https://nifi1:9443/nifi-api/flow/client-id" target="_blank"&gt;https://nifi1:9443/nifi-api/flow/client-id&lt;/A&gt;&lt;BR /&gt;2023-04-12 07:13:21,657 INFO [NiFi Web Server-9579] o.a.n.w.s.NiFiAuthenticationFilter Authentication Success [CN=nifi, OU=NIFI, O=snyderinc, L=Ashburn, ST=Virginia, C=US] 10.0.1.155 GET &lt;A href="https://nifi1:9443/nifi-api/flow/client-id" target="_blank"&gt;https://nifi1:9443/nifi-api/flow/client-id&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 07:26:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368292#M240119</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-12T07:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368335#M240136</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/102685"&gt;@davehkd&lt;/a&gt;&amp;nbsp; It is difficult for me t say where your configuration has gone wrong with what has been shared&lt;BR /&gt;I would need to see your authorizers.xml.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I see in your output mention of the&amp;nbsp;&lt;SPAN&gt;SingleUserAuthorizer.&amp;nbsp; This authorizer does not support defining additional user for assigning policies.&lt;BR /&gt;&lt;BR /&gt;What do you have configured in your nifi.properties for these configuration lines:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;nifi.security.user.authorizer
nifi.security.user.login.identity.provider&lt;/LI-CODE&gt;&lt;P&gt;If either of these is using the "single-user-provider/authorizer", it is expected that you will not see users in the UI.&lt;BR /&gt;&lt;BR /&gt;You'll need to use an authorizer that supports multi user setup like the&amp;nbsp;&lt;A href="https://nifi.apache.org/docs/nifi-docs/html/administration-guide.html#standardmanagedauthorizer" target="_blank"&gt;https://nifi.apache.org/docs/nifi-docs/html/administration-guide.html#standardmanagedauthorizer&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;since you are using user certificates for handling your user authentication. the nifi.security.user.login.identity.provider configuration property should be blank.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="batang,apple gothic"&gt;If you found that the provided solution(s) assisted you with your query, please take a moment to login and click&lt;/FONT&gt;&amp;nbsp;&lt;FONT face="arial black,avant garde" color="#FF0000"&gt;Accept as Solution&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="batang,apple gothic" color="#000000"&gt;below each response that helped.&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="batang,apple gothic" color="#000000"&gt;Matt&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 14:22:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368335#M240136</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2023-04-12T14:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368340#M240139</link>
      <description>&lt;P&gt;Thanks so much for your response Matt!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;nifi.security.user.authorizer=single-user-authorizer&lt;/P&gt;&lt;P&gt;nifi.security.user.login.identity.provider=single-user-provider&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I'm close.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll set to blank:&amp;nbsp;&amp;nbsp;nifi.security.user.login.identity.provider&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll read the link you provided but I assume that the nifi.security.user.authorizer needs to be set to the initial admin identity...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your input!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 14:56:16 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368340#M240139</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-12T14:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368341#M240140</link>
      <description>&lt;P&gt;Matt...how do i specify the Initial Admin identity as the authorizer?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 14:57:53 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368341#M240140</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-12T14:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368348#M240144</link>
      <description>&lt;P&gt;here is what I added to the authorizers.xml file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;userGroupProvider&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;property name="Initial User Identity 1"&amp;gt;CN=ec2-user&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;property name="Initial User Identity 2"&amp;gt;CN=nifi1, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;property name="Initial User Identity 3"&amp;gt;CN=nifi2, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;property name="Initial User Identity 4"&amp;gt;CN=nifi3, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;accessPolicyProvider&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;property name="Initial Admin Identity"&amp;gt;CN=ec2-user&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;property name="Node Identity 1"&amp;gt;CN=nifi1, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;property name="Node Identity 2"&amp;gt;CN=nifi2, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;property name="Node Identity 3"&amp;gt;CN=nifi3, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 15:56:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368348#M240144</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-12T15:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368350#M240146</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/102685"&gt;@davehkd&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;That is an incomplete authorizers.xml and thus not valid.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 16:04:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368350#M240146</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2023-04-12T16:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368351#M240147</link>
      <description>&lt;P&gt;i only posted what I had changed Matt...sorry...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i'll add the entire file in a moment....thanks for taking a look&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 16:06:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368351#M240147</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-12T16:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368356#M240148</link>
      <description>&lt;P&gt;Here are the complete contents of the authorizers.xml file Matt.&amp;nbsp; Thanks for taking a look! And, thanks in advance for any guidance/recommendations!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8" standalone="yes"??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;authorizers&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;userGroupProvider&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;identifer&amp;gt;file-user-group-provider&amp;lt;/identifier&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;class&amp;gt;org.apache.nifi.authorization.FileUserGroupProvider&amp;lt;/class&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;property name="Initial User Identity 1"&amp;gt;CN=ec2-user&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;property name="Initial User Identity 2"&amp;gt;CN=nifi1, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;property name="Initial User Identity 3"&amp;gt;CN=nifi2, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;property name="Initial User Identity 4"&amp;gt;CN=nifi3, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/userGroupProvider&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;accessPolicyProvider&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;identifier&amp;gt;file-access-policy-provider&amp;lt;/identifier?&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;class&amp;gt;org.apache.nifi.authorization.FileAccessPolicyProvider&amp;lt;/class&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;property name="User Group Provider"&amp;gt;file-user-group-provider&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;lt;property name="Authorizations File"&amp;gt;./conf/authorizations.xml&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;lt;property name="Initial Admin Identity"&amp;gt;CN=ec2-user&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;lt;property name="Legacy Authorized Users File"&amp;gt;&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;property name="Node Identity 1"&amp;gt;CN=nifi1, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;property name="Node Identity 2"&amp;gt;CN=nifi2, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;property name="Node Identity 3"&amp;gt;CN=nifi3, OU=NIFI&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/accessPolicyProvider&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;authorizer&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;identifier&amp;gt;managed-authorizer&amp;lt;/identifier&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;property name="Access Policy Provider"&amp;gt;file-access-policy-provider&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/authorizer&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;authorizer&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;identity&amp;gt;single-user-authorizer&amp;lt;/identifier&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;class&amp;gt;org.apache.nifi.authorization.single.user.SingleUserAuthorizer&amp;lt;/class&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/authorizer&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/authorizer&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 16:50:49 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368356#M240148</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-12T16:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368357#M240149</link>
      <description>&lt;P&gt;Correction to contents:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;authorizer&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;class&amp;gt;org.apache.nifi.authorization.StandardManagedAuthorizer&amp;lt;/class&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;identifier&amp;gt;managed-authorizer&amp;lt;/identifier&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;property name="Access Policy Provider"&amp;gt;file-access-policy-provider&amp;lt;/property&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/authorizer&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 16:53:09 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368357#M240149</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-12T16:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368358#M240150</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/102685"&gt;@davehkd&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The "Initial Admin Identity" is defined in the file-access-policy provider in the authorizers.xml.&lt;BR /&gt;&lt;BR /&gt;This provider is executed during startup of the application startup and creates an authorizations.xml file where it we set a pre-defined set of NiFi Resource Identifiers (NiFi policies) needed for NiFi administration by&amp;nbsp; the Initial Admin Identity and set NiFi Resource Identifiers needed by the NiFI nodes defined in "Node Identity &amp;lt;num&amp;gt;".&lt;BR /&gt;&lt;BR /&gt;The file-access-policy-provider has a dependency on a user-group-provider.&amp;nbsp; This dependency exists because NiFi Resource Identifiers (NiFi Policies) can't be set for any user/client identity strings that are not provided by one of the user-group-providers NiFi offers.&amp;nbsp; In your case, it appears you are using the file-user-group-provider, which means the nodes and initial admin must be added as "Initial user identity &amp;lt;num&amp;gt;" in that provider.&amp;nbsp; The file-user-group-provider is responsible for creating the users.xml.&lt;BR /&gt;&lt;BR /&gt;IMPORTANT: These providers will only generate a users.xml and authorizations.xml file if they do NOT already exist.&amp;nbsp; Expectation is that once created, additional users and setting of additional policies occurs from within the UI.&amp;nbsp; So configuration changes to these providers will have no impact on already existing users.xmll and authorizations.xml.&amp;nbsp; So if mistakes where made in configuration resulting in missing needed content in these files, they need to removed after making your config changes so new can be generated.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="batang,apple gothic"&gt;If you found that the provided solution(s) assisted you with your query, please take a moment to login and click&lt;/FONT&gt;&amp;nbsp;&lt;FONT face="arial black,avant garde" color="#FF0000"&gt;Accept as Solution&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="batang,apple gothic" color="#000000"&gt;below each response that helped.&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="batang,apple gothic" color="#000000"&gt;Matt&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 16:58:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368358#M240150</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2023-04-12T16:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368361#M240151</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/102685"&gt;@davehkd&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;1. You can't have multiple providers in the authorizers.xml.&amp;nbsp; You'll ned to comment out the "singleUserAuthorizer".&lt;BR /&gt;2. Your "managed authorizer is not correct, you are missing the class:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;authorizer&amp;gt;
        &amp;lt;identifier&amp;gt;managed-authorizer&amp;lt;/identifier&amp;gt;
        &amp;lt;class&amp;gt;org.apache.nifi.authorization.StandardManagedAuthorizer&amp;lt;/class&amp;gt;
        &amp;lt;property name="Access Policy Provider"&amp;gt;file-access-policy-provider&amp;lt;/property&amp;gt;
    &amp;lt;/authorizer&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Your file-access-policy-providers configuration looks good here.&lt;BR /&gt;4. Your file-user-group-provider configuration is not correct, you are missing the line that defines where the users.xml file is to be created:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;userGroupProvider&amp;gt;
        &amp;lt;identifier&amp;gt;file-user-group-provider&amp;lt;/identifier&amp;gt;
        &amp;lt;class&amp;gt;org.apache.nifi.authorization.FileUserGroupProvider&amp;lt;/class&amp;gt;
        &amp;lt;property name="Users File"&amp;gt;./conf/users.xml&amp;lt;/property&amp;gt;
        &amp;lt;property name="Initial User Identity 1"&amp;gt;CN=ec2-user&amp;lt;/property&amp;gt;
        &amp;lt;property name="Initial User Identity 2"&amp;gt;CN=nifi1, OU=NIFI&amp;lt;/property&amp;gt;
        &amp;lt;property name="Initial User Identity 3"&amp;gt;CN=nifi2, OU=NIFI&amp;lt;/property&amp;gt;
        &amp;lt;property name="Initial User Identity 4"&amp;gt;CN=nifi3, OU=NIFI&amp;lt;/property&amp;gt;
&amp;lt;/userGroupProvider&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Make sure that in your nifi.properties file, you have configured NiFi to use the managed authorizer:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;nifi.security.user.authorizer=managed-authorizer&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Make sure that in your nifi.properties, you do NOT have the following property configured to use the single-user-provider:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;nifi.security.user.login.identity.provider=&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="batang,apple gothic"&gt;If you found that the provided solution(s) assisted you with your query, please take a moment to login and click&lt;/FONT&gt;&amp;nbsp;&lt;FONT face="arial black,avant garde" color="#FF0000"&gt;Accept as Solution&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="batang,apple gothic" color="#000000"&gt;below each response that helped.&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="batang,apple gothic" color="#000000"&gt;Matt&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 17:11:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368361#M240151</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2023-04-12T17:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368366#M240153</link>
      <description>&lt;P&gt;Matt -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are a gem and a genius!&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was finally able to access the Users and Policy menu options.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A tremendous and heartfelt THANK YOU!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I send a note of thanks to anyone at Cloudera for the amazing help you provided me!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 20:06:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368366#M240153</guid>
      <dc:creator>davehkd</dc:creator>
      <dc:date>2023-04-12T20:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Want to Use SSL i.e., Organization Provided Certs for New NiFi Cluster Users</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368731#M240249</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/102685"&gt;@davehkd&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for the awesome feedback.&amp;nbsp; Glad i could help you.&lt;BR /&gt;&lt;BR /&gt;It would be great if you could go through this back and forth exchange and accept all the responses I provided that helped you.&amp;nbsp; I noticed you accepted your own response.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Matt&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 20:27:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Want-to-Use-SSL-i-e-Organization-Provided-Certs-for-New-NiFi/m-p/368731#M240249</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2023-04-17T20:27:27Z</dc:date>
    </item>
  </channel>
</rss>

