我正在尝试使用非常基本的 scp 命令将文件从本地系统上的虚拟机(Ubuntu 18.04)移动到远程服务器。这个问题只出现在一个特定的服务器上,其他的工作正常,所以它不是一个通用的东西。
scp <file name> <user>@<complete_hostname>:~/
但是此命令不会继续进行成功的身份验证。
SCP Log: (from local machine, Ubuntu 18.04)
==========
debug1: Next authentication method: publickey
debug1: Offering public key:
RSA SHA256:<key> /home/username/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 279
debug1: Authentication succeeded (publickey).
Authenticated to 'HOSTNAME' ([10.6.26.145]:22).
debug1: channel 0: new [client-session]
debug1: Requesting [email protected]
debug1: Entering interactive session.
debug1: pledge: network
debug1: Sending environment.
debug1: Sending env LANG = en_IN
debug1: Sending command: scp -v -r -d -t ~/received/
Form another remote server:
debug1: Next authentication method: publickey
debug1: Trying private key: /home/username/.ssh/identity
debug1: Offering public key: /home/username/.ssh/id_rsa
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password
debug1: Trying private key: /home/username/.ssh/id_dsa
debug1: Trying private key: /home/username/.ssh/id_ecdsa
debug1: Next authentication method: password
username@hostname's password:
debug1: Authentication succeeded (password).
debug1: channel 0: new [client-session]
debug1: Requesting [email protected]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LANG = C
debug1: Sending env LC_ALL = C
debug1: Sending command: scp -v -t ~/
我在这些机器上没有任何特权访问权限,有没有办法找出问题所在?我需要做什么?
对我来说,我要访问的目录
scp
不存在。我试图将文件发送到
C:\Users\MyUser\AppData\AnotherDir\AnotherDir\
. 一旦我将目标目录更改为C:\Users\MyUser\
,它就起作用了。对于未来的读者,
但
所以
scp
可能看起来像这样挂(错误的端口)。-v
国旗是你的朋友。事实证明,这是一个阻止传输的防火墙。原因是我的默认 shell 的.*rc文件的文件权限。
我的默认 shell 是 csh,文件权限是
将这些更改为
解决了这个问题。