Member since
10-05-2018
5
Posts
0
Kudos Received
0
Solutions
10-19-2018
02:42 PM
@wsalazar I ran into the same issue and I had to set up two more kerberos configuration files (krb5.ini and jaas.conf) and point Nifi to this. My HDF/Nifi is running on Linux host. Login credentials can be specified from controller's username and password value. krb5.ini [libdefaults] default_realm = YYYY.CORP.CONTOSO.COM dns_lookup_realm = false dns_lookup_kdc = true [domain_realm] .yyyy.corp.contoso.com = YYYY.CORP.CONTOSO.COM
[realms] YYYY.CORP.CONTOSO.COM = { kdc = YYYY.CORP.CONTOSO.COM admin_server = YYYY.CORP.CONTOSO.COM master_kdc = YYYY.CORP.CONTOSO.COM default_domain= YYYY.CORP.CONTOSO.COM } jaas.conf SQLJDBCDriver {
com.sun.security.auth.module.Krb5LoginModule required doNotPrompt=false
useTicketCache=false;
}; Please see https://medium.com/@danielyahn/nifi-ms-sql-integrated-security-9efc184872db for more detail
... View more
10-06-2018
12:24 AM
I have a Nifi cluster on production and realized I need additional disk space for flowfile repository. What would be the best way to handle the scenario? If I mount a new disk from Ambari using the following configuration: nifi.flowfile.repository.directory.flowfile2 would it be smart enough to load balance between existing drive and the new drive? Would it only apply to new incoming flowfiles?
... View more
Labels:
- Labels:
-
Apache Ambari
-
Apache NiFi