scp foo.txt [email protected]:.
可以成功,但总是失败,在我按照 scp 的要求输入正确的 root 密码后,它总是说:scp foo.txt [email protected]:.
Permission denied, please try again
这是为什么?Ubuntu 20.04 LTS 服务器版本,带有 FinalShell3.8.3
另一个问题可能有一些共同点,也与 root 用户有关:
为什么当我使用 root ssh 远程计算机时,ssh 客户端总是显示拒绝访问?我尝试使用不同的 ssh 客户端,结果相同。
答案1
可能是因为#PermitRootLogin prohibit-password
(或类似情况)在您的 中/etc/ssh/sshd_config
。取消注释此行,将其更改为PermitRootLogin yes
并重新加载sshd
。请注意,不建议这样做!