rsync não funciona, mas ssh e scp fazem

1

Estou tentando copiar arquivos de um servidor remoto (linux) para meu cliente (osx) usando

rsync -avz remote:/path/to/file .

mas a conexão trava e a transferência nunca é concluída. Em vez disso, posso com sucesso scp e ssh . A configuração que estou usando é

ServerAliveInterval 120

Host            *
ForwardX11       yes

Host            remote
HostName        remote.address.uk
HostKeyAlias    remote.address.uk
User            myusername
LocalForward    localhost:5903 remote:5904
LocalForward    localhost:5902 remote:5901
TCPKeepAlive    yes
IdentityFile    ~/.ssh/id_rsa

Se eu entendi corretamente, a porta padrão para rsync é a mesma que para ssh e scp . Como posso fazer o rsync funcionar novamente?

Eu tenho a seguinte saída executando rsync -e "ssh -v" -avz remote:~/file .

OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
debug1: Reading configuration data /Users/.ssh/config
debug1: /Users/.ssh/config line 3: Applying options for *
debug1: /Users/.ssh/config line 41: Applying options for remote
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: /etc/ssh_config line 102: Applying options for *
debug1: Connecting to remote.address.uk [129.234.196.8] port 22.
debug1: Connection established.
debug1: identity file /Users/.ssh/id_rsa type 1
debug1: identity file /Users/.ssh/id_rsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH_5*
debug1: using hostkeyalias: remote.address.uk
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Server host key: RSA 43:2b:c5:8c:c4:fc:c3:9a:eb:0d:92:58:63:9a:56:00
debug1: using hostkeyalias: remote.address.uk
debug1: Host 'remote.address.uk' is known and matches the RSA host key.
debug1: Found key in /Users/.ssh/known_hosts:2
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /Users/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 279
debug1: Authentication succeeded (publickey).
Authenticated to remote.address.uk ([129.234.196.8]:22).
debug1: Local connections to localhost:5903 forwarded to remote address remote:5904
debug1: Local forwarding listening on ::1 port 5903.
debug1: channel 0: new [port listener]
debug1: Local forwarding listening on 127.0.0.1 port 5903.
debug1: channel 1: new [port listener]
debug1: Local connections to localhost:5902 forwarded to remote address remote:5901
debug1: Local forwarding listening on ::1 port 5902.
debug1: channel 2: new [port listener]
debug1: Local forwarding listening on 127.0.0.1 port 5902.
debug1: channel 3: new [port listener]
debug1: channel 4: new [client-session]
debug1: Requesting [email protected]
debug1: Entering interactive session.

EDITAR:

agora ssh também trava após Entering interactive session , mas ssh -fN remote ainda funciona. Eu tentei remover .bash* .profile .cshrc no lado do servidor, sem resultado. A conexão ssh com outro servidor remoto que está disponível para mim também falha.

Eu descobri que esse problema só acontece no meu cliente osx . Descobri que rsync e ssh funcionam para ambos os servidores remotos na minha caixa Linux que executo em uma caixa virtual em osx .

    
por simona 14.11.2016 / 15:52

1 resposta

0

A solução é que xquartz no meu osx está quebrado por algum motivo. Portanto, o encaminhamento do X não funciona. Desativei o encaminhamento do X e agora posso conectar-me

Como desativar o encaminhamento do X (para osx)

  1. Editar ~ / .ssh / config
  2. Adicionar / descomentar ForwardX11 no

"como fazer" fonte

    
por 17.11.2016 / 14:34