Difference between revisions of "Software projects/OS/Slackware/Advanced usage/vsftpd"

From Pandora Wiki
Jump to: navigation, search
(Created page with "= Configuration = * Edit /etc/vsftpd.conf . * This default configuration file is well-commented. * For more options: man vsftpd.conf = Start from inetd = * Edit /etc/inetd.conf...")
 
Line 10: Line 10:
 
  #ftp    stream  tcp    nowait  root    /usr/sbin/tcpd  vsftpd                                                         
 
  #ftp    stream  tcp    nowait  root    /usr/sbin/tcpd  vsftpd                                                         
 
to
 
to
  ftp    stream  tcp    nowait  root    /usr/sbin/tcpd  vsftpd                                                      
+
  ftp    stream  tcp    nowait  root    /usr/sbin/tcpd  vsftpd  
 +
* If the proftpd line is active, comment it.                                 
 
* Start inetd
 
* Start inetd
 
* Be sure that in /etc/vsftpd.conf you have:
 
* Be sure that in /etc/vsftpd.conf you have:

Revision as of 07:05, 16 April 2012

Configuration

  • Edit /etc/vsftpd.conf .
  • This default configuration file is well-commented.
  • For more options:
man vsftpd.conf

Start from inetd

  • Edit /etc/inetd.conf
  • Uncomment
#ftp     stream  tcp     nowait  root    /usr/sbin/tcpd  vsftpd                                                        

to

ftp     stream  tcp     nowait  root    /usr/sbin/tcpd  vsftpd    
  • If the proftpd line is active, comment it.
  • Start inetd
  • Be sure that in /etc/vsftpd.conf you have:
 listen=NO

Start as standalone

  • Edit /etc/vsftpd.conf
  • Change
listen=NO

to

listen=YES
  • Run vsftpd
vsftpd