我有两个linode VPS 帐户,我想将一个备份到另一个上(原因主要是为了好玩和练习服务器管理。)
短版
Duplicity 甚至没有询问我的密码,而是立即说“无效的 SSH 密码”(但我可以 ssh 进入另一台服务器)。为什么?
长版
当我跑步时,duplicity /home/me scp://[email protected]//root/backup
我得到
Invalid SSH password
Running 'sftp [email protected]' failed (attempt #1)
Invalid SSH password
Running 'sftp [email protected]' failed (attempt #2)
Invalid SSH password
Running 'sftp [email protected]' failed (attempt #3)
它Invalid SSH password
立即说我没有机会实际输入密码。
当我打字时,duplicity full -v9 --num-retries 4 /home/me scp://[email protected]//root/backup
我得到
Main action: full
Running 'sftp [email protected]' (attempt #1)
State = sftp, Before = 'Connecting to 97.107.129.67...
[email protected]'s'
State = sftp, Before = ''
Invalid SSH password
Running 'sftp [email protected]' failed (attempt #1)
我可以通过 ssh 进入 root@xxxx,事实上,在我尝试任何这些之前,我的 ip 都在 known_hosts 中。serer 1(我从中运行 duplicity 命令)是 Linode 的默认 Ubuntu 8 设置,仅通过 apt-get 安装了少数程序。服务器 2(由 xxxx 表示)实际上只是 Linode 的默认 Ubuntu 8 设置
我之前尝试过使用 SystemImager——那会以破坏性的方式改变设置吗?(从那时起我已删除并重新启动)
Duplicity 不应该提示输入密码吗?我用错了吗?我需要了解哪些常见错误/依赖项?有没有什么方法可以设置 xxxx 以使其无法正常工作(我使用了 Linode 的默认 Ubuntu 8 设置并且几乎没有)?
从重复(1)
--ssh-askpass 告诉 ssh/scp 后端使用环境中的 FTP_PASSWORD,或者,如果不存在,提示用户输入远程系统密码。
仅供参考:我已经看到重复性因“无效的 SSH 密码”而失败,事实上,问题在于它试图通过 SFTP 访问的目录根本不存在。
(我在 user@host 之后省略了一个斜杠,即当我需要 scp://user@host//mnt/backups 时我已经完成了 scp://user@host/mnt/backups。)