Member since
01-10-2021
86
Posts
3
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2406 | 06-06-2022 10:21 PM | |
1512 | 09-22-2021 11:14 PM |
07-17-2023
08:51 AM
Starting from NiFi 1.14, you can specify the TLS ciphers to be used by NiFi web service by using below property:
nifi.web.https.ciphersuites.include
You can also specify the TLS Ciphers to be excluded by using below property:
nifi.web.https.ciphersuites.exclude
This enhancement is part of Apache Jira NIFI-3580.
For Cloudera CFM, these properties are exposed (and usable) from CFM 2.1.3 and above.
Note: The values for above properties should take the form of a comma-separated list of common cipher names as specified here. The regular expressions (for example ^.*GCM_SHA256$) may also be specified.
... View more
Labels:
06-06-2022
10:21 PM
1 Kudo
Hello, Please verify the NiFi version you are using. Generally speaking, this issue is tracked under NIFI-9392 and was caused by NIFI-9248 It throws multiple NoClassDefFoundError It is fixed in NiFi 1.16.0 Regards, Mohd Nadeem Ul Islam Cloudera Inc.
... View more
09-22-2021
11:14 PM
You might be hitting a known issue where NiFi process is looking for "/conf/state/" directory under NiFi Process directory (/var/run/cloudera-scm-agent/process/*nifi/) created by Cloudera Manager Agent. But the "/conf/state/" directory is not created by default causing "No such file or directory" exception. This exception should not actually cause any issue with the data flow. To get rid of the exception please add 'nifi.persistent.state.directory' property to nifi.properties and point it directory that is writeable by nifi Regards, Mohd Nadeem Ul Islam Was your question answered? Make sure to mark the answer as the accepted solution
... View more