所以我设置了一个 Ubuntu Server 16.04 AWS 微型 EC2 实例供我的学生上传文件。他们可以使用 putty 通过 ssh 登录,但是当使用带有 Filezilla 的 ftp 时,他们的密码被拒绝:
Status: Connecting to ##.##.##.##:21...
Status: Connection established, waiting for welcome message...
Status: Initializing TLS...
Status: Verifying certificate...
Status: TLS connection established.
Command: USER test1
Response: 331 Please specify the password.
Command: PASS ********
Response: 530 Login incorrect.
Error: Critical error: Could not connect to server
Status: Disconnected from server
但是,您也可以使用 sftp 登录:
C:\Windows\SysWOW64>sftp test4@##.##.##.##
test4@##.##.##.##'s password:
Connected to test4@##.##.##.##.
sftp> quit
我通过这样做解决了这个问题
usermod -shell /bin/bash username
对于他们所有的用户名。但是,我想知道为什么会这样。是不是因为缺少 bash shell 会导致在 Filezilla 登录时出现奇怪的字符,并输入密码?谢谢。