<?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 Re: Questions on configuring LDAP Authentication in NiFi in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376406#M242898</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/106948"&gt;@LKB&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I am not clear what you mean by "NiFi rejects" it.&amp;nbsp; What is the exact exception you are seeing. NiFi does not reject anything, the ldap endpoint would be what would be responding to the query.&lt;BR /&gt;&lt;BR /&gt;The "{0}" is replaced with the username string you enter in the "user" field presented by NiFi.&amp;nbsp; &amp;nbsp;So let's assume you login with "&lt;SPAN&gt;user_admin".&amp;nbsp; Your configured LDAP endpoint would be queried for user with "sAMAccountName=user_admin" as an attribute.&lt;BR /&gt;&lt;BR /&gt;I would get the ldap listing for your user_admin user from ldap server and verify that "sAMAccountName=user_admin" exists.&amp;nbsp; &amp;nbsp;sAMAccountName is an attribute more commonly associated with Active Directory (AD), but can be added to LDAP as a useable attribute with some custom ldifs.&lt;BR /&gt;&lt;BR /&gt;Two authentication happen here:&lt;BR /&gt;First is the Manager DN along with Manager password is used to facilitate a connection to your ldap.&amp;nbsp; Then the supplied username via login UI is used to lookup the specific user record for password verification.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Additionally, since you are using LDAPS instead of LDAP, you are enabling a TLS encrypted connection to your LDAPS. So something else you'll want to verify is that the keystore and truststore you configured in your ldap-provider contains the necessary entries to facilitate that successful TLS connection.&lt;BR /&gt;&lt;BR /&gt;Something other configs that strikes me as incorrect:&lt;BR /&gt;1. Your user DN is "uid=user_admin,OU=USERS,DC=abc,DC=com"; however, your configured user search base is "DC=abc,DC=net".&amp;nbsp; That means your user you are trying to authenticate would not be found under that search base.&lt;BR /&gt;2. Your LDAPS url is missing the port number "ldaps://test.com:&amp;lt;port&amp;gt;" (commonly 636 and 3269 are defaults for ldaps).&amp;nbsp; &amp;nbsp;If your LDAP support unencrypted connections you could change your "Authentication Strategy" from "START_TLS" to "SIMPLE" and then set your LDAP URL to ldap://test.com:389 (389 is default unencrypted port).&lt;BR /&gt;&lt;BR /&gt;Make sure you are checking your nifi-app.log and nifi-user.log for any exceptions that may be thrown as you try to login to help you troubleshoot further.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If you found any of the suggestions/solutions provided helped you with your issue, please take a moment to login and click "&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Accept as Solution&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;" on one or more of them that helped.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Matt&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Sep 2023 18:12:24 GMT</pubDate>
    <dc:creator>MattWho</dc:creator>
    <dc:date>2023-09-15T18:12:24Z</dc:date>
    <item>
      <title>Questions on configuring LDAP Authentication in NiFi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376391#M242894</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I am new to NiFi. I have set up NiFi with LDAP authentication and NiFi starts with no issues but I don't know how to log into NiFi as&amp;nbsp;"Initial Admin Identity" user "user_admin" as shown in my setup below. What should I use as the login credentials as NiFi presently rejects user_admin/&amp;lt;password&amp;gt;?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;nifi.properties&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;nifi.security.user.authorizer=file-provider&lt;BR /&gt;nifi.security.allow.anonymous.authentication=false&lt;BR /&gt;nifi.security.user.login.identity.provider=ldap-provider&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;STRONG&gt;login-identity-providers.xml&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/STRONG&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;identifier&amp;gt;ldap-provider&amp;lt;/identifier&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;class&amp;gt;org.apache.nifi.ldap.LdapProvider&amp;lt;/class&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Authentication Strategy"&amp;gt;START_TLS&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Manager DN"&amp;gt;uid=test_admin,OU=users,DC=abc,DC=com&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Manager Password"&amp;gt;*******&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="TLS - Keystore"&amp;gt;./conf/keystore.p12&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="TLS - Keystore Password"&amp;gt;*****&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="TLS - Keystore Type"&amp;gt;PKCS12&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="TLS - Truststore"&amp;gt;./conf/truststore.p12&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="TLS - Truststore Password"&amp;gt;******&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="TLS - Truststore Type"&amp;gt;PKCS12&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="TLS - Client Auth"&amp;gt;REQUIRED&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="TLS - Protocol"&amp;gt;TLS&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="TLS - Shutdown Gracefully"&amp;gt;&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Referral Strategy"&amp;gt;FOLLOW&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Connect Timeout"&amp;gt;10 secs&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Read Timeout"&amp;gt;10 secs&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Url"&amp;gt;ldaps://test.com&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="User Search Base"&amp;gt;DC=abc,DC=net&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="User Search Filter"&amp;gt;sAMAccountName={0}&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Identity Strategy"&amp;gt;USE_USERNAME&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Authentication Expiration"&amp;gt;12 hours&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;-----------------------&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;authorizer.xml&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;lt;authorizer&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;identifier&amp;gt;file-provider&amp;lt;/identifier&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;class&amp;gt;org.apache.nifi.authorization.FileAuthorizer&amp;lt;/class&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Authorizations File"&amp;gt;./conf/authorizations.xml&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Users File"&amp;gt;./conf/users.xml&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Initial Admin Identity"&amp;gt;uid=user_admin,OU=USERS,DC=abc,DC=com&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Legacy Authorized Users File"&amp;gt;&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name="Node Identity 1"&amp;gt;&amp;lt;/property&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/authorizer&amp;gt;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LKB_0-1694778674080.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/38463i42EB06FA214E6A3A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LKB_0-1694778674080.png" alt="LKB_0-1694778674080.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 12:53:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376391#M242894</guid>
      <dc:creator>LKB</dc:creator>
      <dc:date>2023-09-15T12:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: Questions on configuring LDAP Authentication in NiFi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376396#M242896</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/106948"&gt;@LKB&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Does the user "&lt;SPAN&gt;uid=user_admin,OU=USERS,DC=abc,DC=com" exist in your LDAP server?&lt;BR /&gt;&lt;BR /&gt;Also I have never seen a LDAP user entry that used a full DistinquishedName (DN) in the sAMAccountName attribute.&amp;nbsp; sAMAccountName is typically a short name for the user.&lt;BR /&gt;&lt;BR /&gt;NiFi does not install a LDAP/AD server or create/add users and groups to an existing LDAP/AD .&amp;nbsp; NiFi can be configured to authenticate user that already exists in some external existing LDAP/AD server.&lt;BR /&gt;&lt;BR /&gt;So if the login username and password would be whatever was setup in your externally installed and managed LDAP server.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If you found any of the suggestions/solutions provided helped you with your issue, please take a moment to login and click "&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Accept as Solution&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;" on one or more of them that helped.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Matt&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 14:59:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376396#M242896</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2023-09-15T14:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Questions on configuring LDAP Authentication in NiFi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376405#M242897</link>
      <description>&lt;P&gt;Yes, &lt;SPAN&gt;user_admin&amp;nbsp;&lt;/SPAN&gt;exists in LDAP server but when I try to use it's password from the server to log on, NiFi rejects even though I know it's correct.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Should I change this:&amp;nbsp;&lt;SPAN&gt;sAMAccountName to just {0}?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also, how do I use the contents of the user.xml and authorizations.xml that were generated by NiFi? What do those mean? Sorry for my very basic questions. I really appreciate your help&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 16:40:56 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376405#M242897</guid>
      <dc:creator>LKB</dc:creator>
      <dc:date>2023-09-15T16:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Questions on configuring LDAP Authentication in NiFi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376406#M242898</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/106948"&gt;@LKB&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I am not clear what you mean by "NiFi rejects" it.&amp;nbsp; What is the exact exception you are seeing. NiFi does not reject anything, the ldap endpoint would be what would be responding to the query.&lt;BR /&gt;&lt;BR /&gt;The "{0}" is replaced with the username string you enter in the "user" field presented by NiFi.&amp;nbsp; &amp;nbsp;So let's assume you login with "&lt;SPAN&gt;user_admin".&amp;nbsp; Your configured LDAP endpoint would be queried for user with "sAMAccountName=user_admin" as an attribute.&lt;BR /&gt;&lt;BR /&gt;I would get the ldap listing for your user_admin user from ldap server and verify that "sAMAccountName=user_admin" exists.&amp;nbsp; &amp;nbsp;sAMAccountName is an attribute more commonly associated with Active Directory (AD), but can be added to LDAP as a useable attribute with some custom ldifs.&lt;BR /&gt;&lt;BR /&gt;Two authentication happen here:&lt;BR /&gt;First is the Manager DN along with Manager password is used to facilitate a connection to your ldap.&amp;nbsp; Then the supplied username via login UI is used to lookup the specific user record for password verification.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Additionally, since you are using LDAPS instead of LDAP, you are enabling a TLS encrypted connection to your LDAPS. So something else you'll want to verify is that the keystore and truststore you configured in your ldap-provider contains the necessary entries to facilitate that successful TLS connection.&lt;BR /&gt;&lt;BR /&gt;Something other configs that strikes me as incorrect:&lt;BR /&gt;1. Your user DN is "uid=user_admin,OU=USERS,DC=abc,DC=com"; however, your configured user search base is "DC=abc,DC=net".&amp;nbsp; That means your user you are trying to authenticate would not be found under that search base.&lt;BR /&gt;2. Your LDAPS url is missing the port number "ldaps://test.com:&amp;lt;port&amp;gt;" (commonly 636 and 3269 are defaults for ldaps).&amp;nbsp; &amp;nbsp;If your LDAP support unencrypted connections you could change your "Authentication Strategy" from "START_TLS" to "SIMPLE" and then set your LDAP URL to ldap://test.com:389 (389 is default unencrypted port).&lt;BR /&gt;&lt;BR /&gt;Make sure you are checking your nifi-app.log and nifi-user.log for any exceptions that may be thrown as you try to login to help you troubleshoot further.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If you found any of the suggestions/solutions provided helped you with your issue, please take a moment to login and click "&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Accept as Solution&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;" on one or more of them that helped.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Matt&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 18:12:24 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376406#M242898</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2023-09-15T18:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Questions on configuring LDAP Authentication in NiFi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376407#M242899</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The ldap listing without the port number was a typo in my text message here but not in the server&lt;/P&gt;&lt;P&gt;I just checked the nifi-user log (after failed log on attempts) as advised and this is the error I got. So apparently, even though Nifi starts, the user set up is not right. Can you suggest what my ldap parameters should be based on sample I provided above? Your help&amp;nbsp; will be appreciated&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2023-09-15 15:57:58,201 ERROR [NiFi Web Server-25] o.a.n.w.a.c.AdministrationExceptionMapper org.apache.nifi.admin.service.AdministrationException: Unable to validate the supplied credentials. Please contact the system administrator.. Returning Internal Server Error response.&lt;/STRONG&gt;&lt;BR /&gt;org.apache.nifi.admin.service.AdministrationException: Unable to validate the supplied credentials. Please contact the system administrator..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 21:19:22 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376407#M242899</guid>
      <dc:creator>LKB</dc:creator>
      <dc:date>2023-09-15T21:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Questions on configuring LDAP Authentication in NiFi</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376464#M242925</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/106948"&gt;@LKB&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I'd expect a full stack trace in the nifi-app.log following that ERROR.&lt;BR /&gt;&lt;BR /&gt;The ldap-provider is configured inside the login-identity-providers.xml file.&amp;nbsp; Does your LDAP Manager password happen to contain any XML special characters?&amp;nbsp; If so, you should escape them.&lt;BR /&gt;&lt;A href="https://xml.silmaril.ie/specials.html" target="_blank"&gt;https://xml.silmaril.ie/specials.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Have you tried using ldapsearch to manually make a connection to your LDAPS from the server where you have NiFi installed using same manager DN, Manager password, and keystore and trustsore?&amp;nbsp; Was it successful?&lt;/P&gt;&lt;P&gt;If you found any of the suggestions/solutions provided helped you with your issue, please take a moment to login and click "&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Accept as Solution&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;" on one or more of them that helped.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Matt&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 19:16:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Questions-on-configuring-LDAP-Authentication-in-NiFi/m-p/376464#M242925</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2023-09-18T19:16:52Z</dc:date>
    </item>
  </channel>
</rss>

