我可以通过sftp在WinSCP上使用相同的凭据,那么为什么我会在Atom的远程编辑包上收到错误消息?
答案 0 :(得分:0)
我通过修改服务器上的sshd_config文件来纠正这个问题。
sudo vi /etc/ssh/sshd_config
我修改了以下行:
PasswordAuthentication yes #changed from no to yes
然后我重新启动了ssh守护程序:
sudo service ssh restart
这就是诀窍。我相信Atom正在以明文形式向服务器发送密码,因此使用密码身份验证可能会导致问题,除非您将PasswordAuthentication设置为yes。