web-dev-qa-db-ja.com

rsyncは機能しませんが、sshとscpは機能します

を使用してリモートサーバー(linux)からクライアント(osx)にファイルをコピーしようとしています

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

ただし、接続がハングし、転送が完了しません。代わりに、scpsshを正常に実行できます。私が使用している構成は

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

正しく理解していれば、rsyncのデフォルトポートはsshおよびscpのデフォルトポートと同じです。どうすればrsyncを再び機能させることができますか?

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.

編集:

現在、sshEntering interactive sessionの後にハングしますが、ssh -fN remoteは引き続き機能します。サーバー側で.bash*.profile.cshrcを削除しようとしましたが、結果がありません。私が利用できる別のリモートサーバーへのssh接続も失敗します。

この問題は私のosxクライアントでのみ発生することがわかりました。 rsyncsshは、Linuxの仮想ボックスで実行しているosxボックスの両方のリモートサーバーで機能することがわかりました。

2
simona

解決策は、私のosxのxquartzが何らかの理由で壊れていることです。したがって、X転送は機能しません。 X転送を無効にしましたが、接続できるようになりました

X転送を無効にする方法(osxの場合)

  1. 〜/ .ssh/configを編集します
  2. 追加/コメント解除ForwardX11 no

「ハウツー」ソース

0
simona