SUSE Linux 安装FTP

一、 安装步骤:

www1:~# 
zypper install -y vsftpd


www1:~# vi /etc/vsftpd.conf


# line 18: uncomment ( allow writing )
write_enable=YES


# line 39: uncomment
ls_recurse_enable=YES


# line 59: uncomment ( allow local user )
local_enable=YES


# line 69: uncomment ( enable chroot )
chroot_local_user=YES


# line 75: uncomment ( enable chroot list )
chroot_list_enable=YES


# line 79: uncomment ( specify chroot list )
chroot_list_file=/etc/vsftpd.chroot_list


# line 91: uncomment ( no anonymous )
anonymous_enable=NO


# line 200: uncomment: ( allow ascii mode )
ascii_upload_enable=YES
ascii_download_enable=YES


# add at the bottom: specify  your root directory
local_root=/home
# use local time
use_localtime=YES


www1:~# vi /etc/vsftpd.chroot_list


# add users you allow to move over their home directory
test


www1:~# /etc/init.d/vsftpd start
Starting vsftpddone
www1:~# chkconfig vsftpd 



二、安装后验证 


查看FTP服务状态                 执行                /etc/init.d/vsftpd status

重新启动FTP服务                 执行                /etc/init.d/vsftpd restart

关闭FTP服务                        执行                /etc/init.d/vsftpd stop




参考:
http://www.server-world.info/en/note?os=SUSE_Linux_Enterprise_Server_11&p=ftp

你可能感兴趣的:(SUSE Linux 安装FTP)