Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Can Nifi put a file to an FTPS server

avatar
Explorer

I need to put a file to an FTPS server. The properties don't seem to support this. Is this supported?

2 REPLIES 2

avatar
Super Mentor

@sfishman 

 

Currently FTPS is not supported.

 

There is an existing open jira to add SSL capability to the get and put FTP processors here:
https://issues.apache.org/jira/browse/NIFI-2278

 

As an alternative, you may consider using the putFile processor to write your file to disk and then use the ExecuteStreamCommand processor to execute some FTPS supported client from command line to send that file to your FTPS server.   This way you can still accomplish what you want to do through an automated NiFi dataflow.

 

Hope this helps,

Matt

avatar
Explorer

Thanks for getting back with this info.