天天看点

ECS-201

1.安装vsftpd:

使用ssh连接并登录ECS服务器后,使用命令:

yun install -y vsftpd

安装vsftpd,并设置FTP服务开机自动启动:

systemctl enable vsftpd.service

此时FTP服务还未开启,使用命令:

systemctl start vsftpd.service

启动FTP服务,查看FTP监听的端口:

netstat -antup | grep ftp

2.配置vsftpd

修改配置文件:

vim /etc/vsftpd/vsgtpd.conf

解除anon_upload_enable=Yes 的注释,运行匿名上传

更改/var/ftp/pub目录的权限,为FTP用户添加写权限:

chmod o+w /var/ftp/pub/

创建新用户 并设置密码

adduser ftptest

passwd ftptest

创建文件目录并更改目录所有者

mkdir /var/ftp/test

chown -R ftptest:ftptest /var/ftp/test

3.测试

输入用户名和密码后无法显示网页,未解决