- 安装
Yum install vsftpd
启动/重启/关闭
Service vsftpd start/restart/stop
开机默认启动
Chkconfig vsftpd on
- 配置
配置文件位置:/etc/vsftpd/vsftpd.conf
配置vsftpd.conf
anonymous_enable=NO #禁止匿名
xferlog_enable=YES #打开日志记录
xferlog_file=/var/log/vsftpd.log #日志存放位置
xferlog_std_format=YES #标准日志格式
idle_session_timeout=600 #空闲连接超时
data_connection_timeout=120
chroot_local_user=YES #限制用户在其目录下,不能访问其他目录
- 添加FTP本地用户
添加一个目录为/var/www的test用户
/usr/sbin/adduser -d /var/www -g ftp -s /sbin/nologin test
Adduser 添加test用户,自己的文件夹位置为/var/www,属于用户组ftp,不能登陆系统(-s /sbin/nologin)
时间: 2024-11-08 19:00:02