AIX

AIX

Connect with fellow AIX users and experts to gain knowledge, share insights, and solve problems.

 View Only
  • 1.  vsftpd & inetd.conf

    Posted Mon February 22, 2016 09:47 AM

    Originally posted by: Tibor_B


    Hi, I am trying to use vsftpd 3.0.2-1 on AIX 7100-03, and cannot make it work via inetd.

    I have there:

    ftp     stream  tcp     nowait  root    /opt/freeware/sbin/vsftpd       vsftpd
    

    listen=YES in /etc/vsftpd.conf is commented out.

    It works without inetd, only when trying to run it via inetd I get:

    500 OOPS: could not bind listening IPv4 socket

    Any idea what is wrong?

     



  • 2.  Re: vsftpd & inetd.conf

    Posted Mon February 22, 2016 05:32 PM

    Originally posted by: DaveMarquardt


    So it looks like vsftpd is trying to bind the ftp port, but inetd has already done that. Do you have listen set to YES in vsftpd.conf? You need it to be NO to run under inetd.



  • 3.  Re: vsftpd & inetd.conf

    Posted Tue February 23, 2016 02:19 AM

    Originally posted by: Tibor_B


    That was it. I had

    #listen=YES

    there, but obviously explicit

    listen=NO

    is needed. It works now, thanks!