Friday, 9 September 2011

Ubuntu FTP Setup

A successful attempt was made to setup FTP on our linux server. Steps are listed below, as root user:

#yum install vsftpd (Install the FTP Server)
#cd /etc/vsftpd/
#vi vsftpd.conf
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO

#vi ftpusers   -  List of all blocked users
#ntsysv --- check the service or daemon you want to start automatically when the server boot-up
#service vsftpd restart  -- restart the ftp server
# vi /etc/sysconfig/iptables --- open FTP port of firewall
#service iptables restart --- restart the firewall

 Add username and password
#useradd adil
#passwd adil

No comments:

Post a Comment