Member since
03-23-2022
9
Posts
4
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1700 | 04-14-2022 09:06 AM |
01-16-2024
03:11 AM
Ofcourse we can help. Just make a new post. Try to include as much detail as possible, screenshots, how you have invokeHttp configured, errors, etc. In your new post tag me using the @ with my username "steven-matison".
... View more
04-29-2022
02:22 AM
The latest version of Nifi is running (1.16.0) When I say the connection works fine in localhost, I mean that my Nfii service is launched via docker-compose on my computer. When I access Nifi via https://localhost:8443/nifi/ and use a ListenFTP processor on port 2221, the connection via FileZila works. i can transfer files and treat them in Nifi. Localhost : FileZila connection :
... View more
04-14-2022
09:06 AM
I finally used a Jolt transformation on the last ouput content : input : 22516914714270 jolt spec : [
{
"operation": "shift",
"spec": {
"*": {
"$": "usagePointsId"
}
}
}
] ouput : {"usagePointsId": "22516914714270"} Then i used the EvaluateJsonPath to save the value as attributes What a day 😅
... View more
03-29-2022
05:56 AM
1 Kudo
Thanks for your reply @araujo . Indeed, the documentation explain well how to set it up. I just was wondering how to do it with docker-compose (i just recently introduce that technology). I only had to change the docker-compose.yml and adding the listening ftp port to the ports line : nifi:
image: apache/nifi:latest
ports:
- "8443:8443"
- "2221:2221" <---- here
volumes:
- /home/user/nifi/datafiles:/data
- /home/user/local-nifi:/local-data
environment:
- SINGLE_USER_CREDENTIALS_PASSWORD=
- SINGLE_USER_CREDENTIALS_USERNAME= Then i connected to it via FileZilla through `ftp://localhost` `port: 2221` and was able to transfer files.
... View more