Linux安装FTP服务器

1、检查是否已经安装vsftpd

rpm -qa | grep vsftpd

2、如果上面命令没有返回值,说明没有安装

使用yum install vsftpd或zypper install vsftpd进行安装vsftpd(其中yum是红帽,zypper是suse)

3、配置vsftpd.conf文件

vi /etc/vsftpd.conf

这个具体根据自己的需求自行配置,下面是简单配置:

write_enable=YES

ls_recurse_enable=YES

local_enable=YES

chroot_list_enable=YES

chroot_list_file=/etc/vsftpd.chroot_list

anonymous_enable=NO

ascii_upload_enable=YES
ascii_download_enable=YES
4、配置/etc/vsftpd.chroot_list文件

vi /etc/vsftpd.chroot_list

添加用户:(自行配置)

root

5、重启vsftpd服务

service vsftpd restart(centos7用这个:systemctl start vsftpd)

备注:

    如果不行,可以检查下防火墙是否关闭(chkconfig --list iptables 或 suse的是chkconfig --list | grep fire)等

你可能感兴趣的:(Linux)