如何在CentOS中安装配置FTP服务器软件VSFTP
如何在CentOS中安装配置FTP服务器软件VSFTP
1. 安装VSFTPD
yum install vsftpd
2. 配置VSFTPD
vim /etc/vsftpd/vsftpd.conf
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
chroot_local_user=YES
listen=YES
pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
3. 启动VSFTPD
service vsftpd start
4. 设置开机启动
chkconfig vsftpd on
相关文章