मेरी सार्वजनिक कुंजी का उपयोग करके सर्वर से कनेक्ट नहीं किया जा सकता


-2

मैंने अपनी सार्वजनिक कुंजी की प्रतिलिपि बनाई ~/.ssh/authorized_keys सर्वर पर। अब मैं एक ssh कनेक्शन स्थापित करने की कोशिश कर रहा हूँ, लेकिन यह काम नहीं करता है।

इससे आउटपुट है ssh -v (सर्वर डोमेन और आईपी पते को फिर से जोड़ा गया)

OpenSSH_7.2p2 Ubuntu-4ubuntu2.5, OpenSSL 1.0.2g  1 Mar 2016
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to <Server> [ip] port 22.
debug1: Connection established.
debug1: identity file /var/lib/jenkins/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /var/lib/jenkins/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /var/lib/jenkins/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /var/lib/jenkins/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /var/lib/jenkins/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /var/lib/jenkins/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /var/lib/jenkins/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /var/lib/jenkins/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.5
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.2p2 Ubuntu-4ubuntu2.6
debug1: match: OpenSSH_7.2p2 Ubuntu-4ubuntu2.6 pat OpenSSH* compat 0x04000000
debug1: Authenticating to <server>:<port> as 'jenkins'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256@libssh.org
debug1: kex: host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:oDdpyTTKXVwLAF7RvyrBmTdtiYusX9Kh5unb/IVhQT0
debug1: Host <server> is known and matches the ECDSA host key.
debug1: Found key in /var/lib/jenkins/.ssh/known_hosts:5
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 RSA public key: /var/lib/jenkins/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: Trying private key: /var/lib/jenkins/.ssh/id_dsa
debug1: Trying private key: /var/lib/jenkins/.ssh/id_ecdsa
debug1: Trying private key: /var/lib/jenkins/.ssh/id_ed25519
debug1: No more authentication methods to try.

पहले से ही सर्वर पर .ssh की सामग्री के लिए सही अनुमतियाँ निर्दिष्ट करना सुनिश्चित किया गया है और मेरे पास सार्वजनिक कुंजी का उपयोग करके सर्वर में लॉगिन करने में सक्षम एक और uxder है।

किसी भी विचार समस्या क्या हो सकती है?


क्या आप सही उपयोगकर्ता (जेनकींस) के रूप में जुड़ रहे हैं? क्या आपने संपादित किया? authorized_keys सही उपयोगकर्ता के घर निर्देशिका में?
Sjoerd

जवाबों:


0

ssh-copy-id अनुमानों को आपकी मशीनों की ओर पलायन करने वाली चाबियों से निकालता है अपनी डिफ़ॉल्ट कुंजी की प्रतिलिपि बनाने के लिए जिसे आप चलाते हैं:

ssh-copy-id user@newserver.com

यदि आपके पास कई SSH कुंजियाँ हैं जो आप उपयोग करते हैं तो आप इसका उपयोग कर सकते हैं -i यह इंगित करने के लिए कि आप किसको नई मशीन भेजना चाहते हैं। इस तरह:

ssh-copy-id -i /path/to/new_id_rsa user@newserver.com

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.