Member since
01-17-2026
8
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 535 | 01-24-2026 11:44 PM |
01-24-2026
11:44 PM
@MattWho I have found the solution for that. The error was because of the semicolon in the CSV file. I have changed it to comma ","because in my configrations the seprator value was comma not semicolon before: name;age;email
john doe;56;u@gmail.com
hamed;25;fff@gmail.com
arjun;55;ru@gmail.com
ali;21;ffuty@gmail.com
saleh;16;djh@gmail.com After: name,age,email
john doe,56,u@gmail.com
hamed,25,fff@gmail.com
arjun,55,ru@gmail.com
ali,21,ffuty@gmail.com
saleh,16,djh@gmail.com
... View more
01-24-2026
08:01 AM
@MattWho 1. I am using java version 21 2. Using Windows 10 Version number (22H2) 3. I am using Chrome. Tried to use Mozailla it's still same problem. when I click "view content" it open a new tab with request "https://localhost:8443/nifi/#/content-viewer/?ref....." then immediately it changes to "https://localhost:8443/nifi/#/error" I have opened the DevTools and tried to see the response but nothing appears in the response tab . I am trying to solve this from last week
... View more
01-19-2026
01:15 AM
@Runa27 management.server.address -- defines HTTP URL on which NiFi listens for management requests. Doc Ref : https://nifi.apache.org/nifi-docs/administration-guide.html Please try setting below property as part of " bootstrap.conf " and then start the Nifi service. java.arg.mng12=-Dorg.apache.nifi.management.server.address=127.0.0.1:<port-number> Please check if the port-number <for example: 9990> is not defined and replace the same in the property Please help our community grow. If you found any of the suggestions/solutions provided helped you with solving your issue or answering your question, please take a moment to login and click "Accept as Solution" on one or more of them that helped. ThankYou, Hari
... View more