मेरे पास एक CentOS 7 प्रणाली है और जब मैं पोटीन या ssh के साथ लॉगिन करता हूं, तो पासवर्ड प्रॉम्प्ट प्राप्त करने से पहले एक लंबा विलंब होता है। मैं ssh -v भाग गया और मैंने पाया कि यह इस तक जाता है:
debug1: ssh_ecdsa_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
और फिर यह 1-2 मिनट के लिए वहां बैठता है और फिर यह आउटपुट बाहर विस्फोट करता है:
debug1: Authentications that can continue:
publickey,gssapi-keyex,gssapi-with-mic,password
debug1: Next authentication method: gssapi-keyex
debug1: No valid Key exchange context
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
No Kerberos credentials available
debug1: Unspecified GSS failure. Minor code may provide more information
No Kerberos credentials available
debug1: Unspecified GSS failure. Minor code may provide more information
debug1: Unspecified GSS failure. Minor code may provide more information
No Kerberos credentials available
debug1: Next authentication method: publickey
debug1: Trying private key: /home/motor/.ssh/id_rsa
debug1: Trying private key: /home/motor/.ssh/id_dsa
debug1: Trying private key: /home/motor/.ssh/id_ecdsa
debug1: Trying private key: /home/motor/.ssh/id_ed25519
debug1: Next authentication method: password
और फिर पासवर्ड प्रॉम्प्ट सामने आता है। यह कोई फर्क नहीं पड़ता कि कौन सा उपयोगकर्ता लॉग इन कर रहा है। यह केवल 1 सिस्टम पर होता है। मेरे पास 5 अन्य हैं जहां यह बिना देरी के आगे बढ़ता है।
लॉग में कोई डिस्क या मेमोरी या कोई अन्य त्रुटियां नहीं हैं।
इस तरह देरी के कारण क्या हो सकता है?
अपडेट करें:
मैं GSSAPIAuthentication
नहीं करने के लिए सेटिंग की कोशिश की और इस मुद्दे को हल नहीं किया।
मैं फिर से ssh भागा, इस बार -vvv के साथ। यह आउटपुट सामने आया और फिर इसे लटका दिया गया:
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug2: key: /home/motor/.ssh/id_rsa ((nil)),
debug2: key: /home/motor/.ssh/id_dsa ((nil)),
debug2: key: /home/motor/.ssh/id_ecdsa ((nil)),
debug2: key: /home/motor/.ssh/id_ed25519 ((nil)),
1-2 मिनट के बाद यह सामने आया:
debug1: Authentications that can continue: publickey,password
debug3: start over, passed a different list publickey,password
debug3: preferred gssapi-keyex,gssapi-with-mic,publickey,keyboard-interactive,password
debug3: authmethod_lookup publickey
debug3: remaining preferred: keyboard-interactive,password
debug3: authmethod_is_enabled publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /home/motor/.ssh/id_rsa
debug3: no such identity: /home/motor/.ssh/id_rsa: No such file or directory
debug1: Trying private key: /home/motor/.ssh/id_dsa
debug3: no such identity: /home/motor/.ssh/id_dsa: No such file or directory
debug1: Trying private key: /home/motor/.ssh/id_ecdsa
debug3: no such identity: /home/motor/.ssh/id_ecdsa: No such file or directory
debug1: Trying private key: /home/motor/.ssh/id_ed25519
debug3: no such identity: /home/motor/.ssh/id_ed25519: No such file or directory
debug2: we did not send a packet, disable method
debug3: authmethod_lookup password
debug3: remaining preferred: ,password
debug3: authmethod_is_enabled password
debug1: Next authentication method: password
और फिर पासवर्ड प्रॉम्प्ट।