'conexão inesperadamente fechada' enquanto usa rsync com vários argumentos de linha de comando

0

Eu quero copiar um arquivo iso do servidor para o meu computador usando rsync . Eu usei o seguinte comando, mas algo está errado e não consigo descobrir o que. Eu verifiquei a localização do arquivo de chave e do arquivo original.

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

Este é o log criado pelo parâmetro -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]
    
por 7_R3X 11.09.2016 / 11:46

1 resposta

1

Você só precisa de um comando da seguinte forma.

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

Portanto, remova o node@<ip_address> form -e ssh '-v -i ...'

    
por 12.09.2016 / 10:45

Tags