使用带有各种命令行参数的 rsync 时“连接意外关闭”

使用带有各种命令行参数的 rsync 时“连接意外关闭”

我想使用 .iso 将服务器上的 iso 文件复制到我的计算机上rsync。我使用了以下命令,但出了点问题,我不知道是什么。我已经检查了密钥文件和原始文件的位置。

rsync --progress -avz -e 'ssh -v -i ./.ssh/new_keys node@<ip_address>' node@<ip_address>:~/ubuntu-16.04.1-server-amd64.iso ./Downloads/Ubuntu_Server.iso

这是通过参数创建的日志-v

OpenSSH_7.3p1 Debian-1, OpenSSL 1.0.2h  3 May 2016
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to <ip_address> [<ip_address>] port 22.
debug1: Connection established.
debug1: identity file ./.ssh/new_keys type 3
debug1: key_load_public: No such file or directory
debug1: identity file ./.ssh/new_keys-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.3p1 Debian-1
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.2p2 Ubuntu-4ubuntu2.1
debug1: match: OpenSSH_7.2p2 Ubuntu-4ubuntu2.1 pat OpenSSH* compat 0x04000000
debug1: Authenticating to <ip_address>:22 as 'node'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: [email protected]
debug1: kex: host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: [email protected] MAC: <implicit> compression: none
debug1: kex: client->server cipher: [email protected] MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:jXVkrQn/jcw9yrL/mQEvT0v2aXxRd9WZo7BjiO6i1eU
debug1: Host '<ip_address>' is known and matches the ECDSA host key.
debug1: Found key in /home/papagolf/.ssh/known_hosts:1
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_EXT_INFO received
debug1: kex_input_ext_info: server-sig-algs=<rsa-sha2-256,rsa-sha2-512>
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering ECDSA public key: ./.ssh/new_keys
debug1: Server accepts key: pkalg ecdsa-sha2-nistp521 blen 172
Enter passphrase for key './.ssh/new_keys': 
debug1: Authentication succeeded (publickey).
Authenticated to <ip_address> ([<ip_address>]:22).
debug1: channel 0: new [client-session]
debug1: Requesting [email protected]
debug1: Entering interactive session.
debug1: pledge: network
debug1: client_input_global_request: rtype [email protected] want_reply 0
debug1: Sending environment.
debug1: Sending env LANG = en_US.utf8
debug1: Sending command: <ip_address> rsync --server --sender -vlogDtprze.iLsfx . ~/ubuntu-16.04.1-server-amd64.iso
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
debug1: client_input_channel_req: channel 0 rtype [email protected] reply 0
bash: <ip_address>: command not found
debug1: channel 0: free: client-session, nchannels 1
debug1: fd 0 clearing O_NONBLOCK
debug1: fd 1 clearing O_NONBLOCK
Transferred: sent 2580, received 2776 bytes, in 0.6 seconds
Bytes per second: sent 4231.2, received 4552.7
debug1: Exit status 127
rsync: connection unexpectedly closed (0 bytes received so far) [Receiver]

答案1

我有同样的错误消息:

rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(228) [sender=3.2.3]

问题:rsync未安装在目标系统上。

rsync在目标系统上安装后,一切运行都没有错误。

答案2

您只需要如下命令。

rsync --progress -avz -e 'ssh -v -i ./.ssh/new_keys' node@<ip_address>:~/ubuntu-16.04.1-server-amd64.iso ./Downloads/Ubuntu_Server.iso

所以删除node@<ip_address>表格-e ssh '-v -i ...'

答案3

就我而言,这样的命令

rsync -vaP -e "ssh -i ~/.ssh/id_rsa_test" ~/source/grafana-test-logs [email protected]:/mnt/test/logs

/mnt/test/logs拥有适当的权限后才能工作,所以我需要chmod/chown在远程服务器上

答案4

我遇到了这个问题(同样的错误消息 ID 不是同样的问题),

当我消除争论时,它就消失了--compress。在这种情况下,这将是-zin -avz

相关内容