无法将 FileZilla 连接到 ubuntu ec2

无法将 FileZilla 连接到 ubuntu ec2

我在 ec2 上有一个微型 ubuntu 实例。我已将 passwd 设置为简单密码。我在 ec2 实例上安装了 vsftpd。并通过 FileZilla-Settings-SFTP 导入了 ec2 pem 文件,并使用以下内容配置了 vsftpd.conf

listen=YES
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
connect_from_port_20=YES
secure_chroot_dir=/var/run/vsftpd/empty
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/private/vsftpd.pem
local_root=/home/ubuntu
pasv_enable=YES
pasv_max_port=12100
pasv_min_port=12000
port_enable=YES

我使用的用户名是 ubuntu,密码是 that_i_set,端口是 21。出现以下错误

Error:  Critical error
Error:  Could not connect to server

答案1

请在 EC2 中设置安全组并允许端口 22。并且请使用端口 22 而不是 21。

您还可以通过以下 URL 查看安全组设置: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html

相关内容