<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: NiFi - ListFTP on Unix (SunOs 4.1) in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145050#M56562</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/525/mclark.html" nodeid="525"&gt;@Matt Clarke&lt;/A&gt; done. &lt;/P&gt;&lt;P&gt;&lt;A href="https://issues.apache.org/jira/browse/NIFI-3588"&gt;https://issues.apache.org/jira/browse/NIFI-3588&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 14 Mar 2017 07:39:46 GMT</pubDate>
    <dc:creator>melvinmendoza</dc:creator>
    <dc:date>2017-03-14T07:39:46Z</dc:date>
    <item>
      <title>NiFi - ListFTP on Unix (SunOs 4.1)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145046#M56558</link>
      <description>&lt;P&gt;Error on ListFTP, FTP to SunOS 4.1&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="13373-capture.png" style="width: 634px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/21514iFC3446F56ECC4AF1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="13373-capture.png" alt="13373-capture.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 07:49:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145046#M56558</guid>
      <dc:creator>melvinmendoza</dc:creator>
      <dc:date>2019-08-19T07:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - ListFTP on Unix (SunOs 4.1)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145047#M56559</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/14536/melvin-camendoza46.html" nodeid="14536"&gt;@mel mendoza&lt;/A&gt;&lt;/P&gt;&lt;P&gt;There appears to be some issue with your FTP server.  The SYST command is a standard command that is passed when establishing a connection to the FTP server.  The expected response would be the OS information of the target FTP server.&lt;/P&gt;&lt;P&gt;&lt;A href="https://en.wikipedia.org/wiki/List_of_FTP_commands" target="_blank"&gt;https://en.wikipedia.org/wiki/List_of_FTP_commands&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The FTP server running on your SUN OS 4.1 is responding that it does not understand that command.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2017 22:43:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145047#M56559</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2017-03-08T22:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - ListFTP on Unix (SunOs 4.1)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145048#M56560</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/525/mclark.html" nodeid="525"&gt;@Matt Clarke&lt;/A&gt;  upon testing using simple pojo (see code below), I got the same error. &lt;/P&gt;&lt;PRE&gt;    public static void main(String[] args) throws SocketException, IOException {
        FTPClient client = new FTPClient();
        client.connect(IP_ADDRESS);
        client.login(USERNAME, PASSWORD);
        
        FTPFile[] files = client.    listFiles(DIRECTORY);
        
        for (FTPFile file : files) {
            System.out.println(file.getName());
        }
    }&lt;/PRE&gt;&lt;PRE&gt;Exception in thread "main" java.io.IOException: Unable to determine system type - response: 500 'SYST': command not understood.

    at org.apache.commons.net.ftp.FTPClient.getSystemType(FTPClient.java:2801)
    at org.apache.commons.net.ftp.FTPClient.__createParser(FTPClient.java:3369)
    at org.apache.commons.net.ftp.FTPClient.initiateListParsing(FTPClient.java:3338)
    at org.apache.commons.net.ftp.FTPClient.listFiles(FTPClient.java:3016)
    at me.mamendoza.java.tuts.ftp.BasicFTP.main(BasicFTP.java:35)

&lt;/PRE&gt;&lt;P&gt;Then I added this line of code below,&lt;/P&gt;&lt;PRE&gt;        // add FTPClientconfig.SYST_UNIX to connect to SunOS v4.1 
        FTPClientConfig config = new FTPClientConfig(FTPClientConfig.SYST_UNIX);
        client.configure(config);
&lt;/PRE&gt;&lt;P&gt;it returns the list of files.&lt;/P&gt;&lt;P&gt;I think ListFTP doesn't support SYST_UNIX. 
&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2017 10:28:04 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145048#M56560</guid>
      <dc:creator>melvinmendoza</dc:creator>
      <dc:date>2017-03-13T10:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - ListFTP on Unix (SunOs 4.1)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145049#M56561</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/14536/melvin-camendoza46.html" nodeid="14536"&gt;@mel mendoza&lt;/A&gt;&lt;P&gt;May I suggest that you open an Apache Jira against NiFi for this.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2017 19:23:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145049#M56561</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2017-03-13T19:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - ListFTP on Unix (SunOs 4.1)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145050#M56562</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/525/mclark.html" nodeid="525"&gt;@Matt Clarke&lt;/A&gt; done. &lt;/P&gt;&lt;P&gt;&lt;A href="https://issues.apache.org/jira/browse/NIFI-3588"&gt;https://issues.apache.org/jira/browse/NIFI-3588&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Mar 2017 07:39:46 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145050#M56562</guid>
      <dc:creator>melvinmendoza</dc:creator>
      <dc:date>2017-03-14T07:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - ListFTP on Unix (SunOs 4.1)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145051#M56563</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/525/mclark.html" nodeid="525"&gt;@Matt Clarke&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I created custom nifi processor to support FTPClientConfig&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/clickha/nifi-tools.git" target="_blank"&gt;https://github.com/clickha/nifi-tools.git&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 20:12:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/NiFi-ListFTP-on-Unix-SunOs-4-1/m-p/145051#M56563</guid>
      <dc:creator>melvinmendoza</dc:creator>
      <dc:date>2017-03-20T20:12:44Z</dc:date>
    </item>
  </channel>
</rss>

