2 个回答

要配置。

1、yum -y install vsftpd.i*
2、增加用户组groupadd wwwroot
增加用户useradd -g wwwroot -M -d /var/www -s /sbin/nologin ftpflashgou
设置密码passwd ftpflashgou

3、创建文件夹:
mkdir /var/www
mkdir /var/www/logs

4、编辑vi /etc/vsftpd/vsftpd.conf文件,按i进行编辑,将anonymous_enable=yes改为no,并在其后增加:
user_config_dir=/etc/vsftpd
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list
xferlog_file=/var/www/logs/vsftpd.log
ftpd_banner=welcome to flashgou vsftpd.
max_clients=4
max_per_ip=2
use_localtime=YES
按esc,再按:wq退出。
5、创建文件vi /etc/vsftpd/chroot_list,新增ftpflashgou用户

6、权限,直接输入:chown -R ftpflashgou.wwwroot /var/www
chmod -R 755 /var/www

最后重启linux就可以了,why。。。我一直以为linux不用重启的

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进