मैं एक उपयोगकर्ता खाते के लिए ssh एक्सेस सेटअप करने की कोशिश कर रहा हूं जो मैंने डिजिटल सागर ubuntu 12.04 सर्वर पर शेफ के साथ बनाया था। मेरे पास डिजिटल महासागर में सेट किए गए विकल्प थे, जब बूंद पैदा होती है, तो अपने मैक की ssh कुंजी को स्वचालित रूप से कॉपी करने के लिए।
मैं बिना किसी समस्या के मूल में ssh कर सकता हूं, लेकिन मेरे अन्य उपयोगकर्ता प्रमाणित करने में विफल हैं। यह एक सामान्य समस्या लगती है, और मैंने कुछ अन्य उत्तरों की जाँच की, और अधिक जानकारी प्राप्त करने के लिए इस कमांड को पाया:
ssh -vvv -i id_rsa user@serverIP
रूट उपयोगकर्ता के लिए लॉग (जो सफल होता है) उस कमांड के साथ हैं
डिबग
1: Offering RSA public key: /Users/evan/.ssh/id_rsa
debug3: send_pubkey_test
debug2: we sent a publickey packet, wait for reply
debug1: Server accepts key: pkalg ssh-rsa blen 279
debug2: input_userauth_pk_ok: fp snip!
debug3: sign_and_send_pubkey: snip!
debug1: read PEM private key done: type RSA
debug1: Authentication succeeded (publickey).
असफल उपयोगकर्ता:
डिबग
1: Authentications that can continue: publickey
debug3: start over, passed a different list publickey
debug3: preferred 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: Offering RSA public key: /Users/evan/.ssh/id_rsa
debug3: send_pubkey_test
debug2: we sent a publickey packet, wait for reply
debug1: Authentications that can continue: publickey
debug1: Trying private key: /Users/evan/.ssh/id_dsa
debug3: no such identity: /Users/evan/.ssh/id_dsa: No such file or directory
debug2: we did not send a packet, disable method
debug1: No more authentication methods to try.
मेरे लिए इसका मतलब है कि सार्वजनिक कुंजी गलत है। लेकिन, अगर मैं रूट उपयोगकर्ता के रूप में लॉगिन करता हूं और जाता हूं, तो मैं home/otheraccount/.ssh/authorized_keys
देख सकता हूं कि मेरी ssh कुंजी है। मुझे लगा कि शायद कोई त्रुटि थी, इसलिए मैंने किया cp .ssh/authorized_keys ~/home/otheraccout/.ssh/authorized_keys
लेकिन इससे कोई मदद नहीं मिली। मुझे नहीं पता कि और कहां देखना है।
मेरा etc/ssh/sshd_conig
:
# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
#Privilege Separation is turned on for security
"sshd_config" 88L, 2508C
KeyRegenerationInterval 3600
ServerKeyBits 768
# Logging
SyslogFacility AUTH
LogLevel INFO
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys
# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes
PermitEmptyPasswords no
# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no
# Change to no to disable tunnelled clear text passwords
PasswordAuthentication no
# GS
SAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
X11Forwarding no
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no
#MaxStartups 10:30:60
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
UsePAM no
Banner /etc/ssh_banner
संपादित करें:
drwx------ 2 deploy deploy 4096 Apr 20 06:00 .ssh
-rw------- 1 deploy deploy 820 Apr 20 05:35 authorized_keys
EDIT2:
जैसा कि टिप्पणियों में सुझाया गया है /var/log/authlog
:
Apr 21 04:59:30 localhost sshd[586]: User deploy not allowed because account is locked
Apr 21 04:59:30 localhost sshd[586]: input_userauth_request: invalid user deploy [preauth]
मैंने करने की कोशिश की sudo usermod --expiredate -1 deploy
और यह लौट आयाno changes
drwx------ 2 deploy deploy 4096 Apr 20 06:00 .ssh
-rw------- 1 deploy deploy 820 Apr 20 05:35 authorized_keys
serverIP
( /var/log/auth.log
) में लॉग लाइनें क्या होती हैं deploy
?
passwd -u
। में deploy
अब के रूप में ssh कर सकते हैं, लेकिन वास्तव में उत्सुक क्यों मेरे महाराज तैनात बंद उपयोगकर्ताओं को पैदा कर रहा है। कृपया अपनी टिप्पणी को एक उत्तर के रूप में कॉपी / पेस्ट करें ताकि मैं आपको क्रेडिट दे
~/home/otheraccount/.ssh
होना चाहिए700
और~/home/otheraccount/.ssh/authorized_keys
होना चाहिए600
अनुमति और दोनों फ़ाइलों स्वामित्व में होना चाहिएotheraccount