मैं एक दूरस्थ सर्वर (लिनक्स) से अपने क्लाइंट (osx) का उपयोग करके फ़ाइलों को कॉपी करने की कोशिश कर रहा हूं
rsync -avz remote:/path/to/file .
लेकिन कनेक्शन लटका हुआ है और स्थानांतरण कभी पूरा नहीं हुआ है। इसके बजाय, मैं सफलतापूर्वक scpऔर कर सकता हूं ssh। मेरे द्वारा उपयोग किया जा रहा कॉन्फ़िगरेशन है
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 no-more-sessions@openssh.com
debug1: Entering interactive session.
संपादित करें:
अब के sshबाद भी लटका हुआ है Entering interactive session, लेकिन ssh -fN remoteअभी भी काम करता है। मैंने .bash* .profile .cshrcबिना किसी परिणाम के, सर्वर साइड पर हटाने की कोशिश की है । किसी अन्य दूरस्थ सर्वर के लिए ssh कनेक्शन जो मेरे लिए उपलब्ध है वह भी विफल रहता है।
मैंने पाया है कि यह समस्या केवल मेरे osxक्लाइंट पर होती है। मैंने पाया है rsyncऔर sshअपने Linuxबॉक्स पर दोनों दूरस्थ सर्वरों के लिए काम करता हूं जिन्हें मैं एक आभासी बॉक्स पर चलाता हूं osx।
sftp remote
rsync -e "ssh -v") में ssh चलाने का प्रयास करें , और देखें कि क्या कुछ भी जानकारीपूर्ण प्रिंट करता है।
sftpकाम करता है