我已经在 Ubuntu 中设置了 VSFTPD,如果我尝试使用私钥对文件进行 SFTP 传输,我可以正常使用——但我想允许其他用户使用密码。我已经按照 Ubuntu 的说明进行操作,并且已经在“sftponly”用户组中创建了用户,并创建了适当的主目录,但是当我尝试连接时,我被拒绝了:
Permission denied (publickey).
当我做一个 ssh -vvv someuser@123.45.67.89 时,一行说:
debug1: Authentications that can continue: publickey
我有另一台服务器,密码方法可以正常工作,那个特定的调试行说:
debug1: Authentications that can continue: publickey,password
所以,我的问题是:如何添加password
到身份验证方法列表中?