Sto cercando di configurare l'accesso ssh per un account utente che ho creato con chef su un server Ubuntu 12.04 digitale ocean. Avevo le opzioni impostate in digital ocean per copiare automaticamente la chiave ssh del mio mac quando viene creato il droplet.
Posso accedere come root senza problemi, ma il mio altro utente non riesce ad autenticarsi. questo sembra essere un problema comune e ho controllato alcune delle altre risposte e ho trovato questo comando per ottenere maggiori informazioni:
ssh -vvv -i id_rsa user@serverIP
I registri per l'utente root (che ha esito positivo) con quel comando sono
mettere a punto
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).
utente fallito:
mettere a punto
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.
Il che per me significa che la chiave pubblica non è corretta. Ma, se accedo come utente root e vado a home/otheraccount/.ssh/authorized_keys
, posso vedere che la mia chiave SSH è lì. Ho pensato che forse ci fosse un errore, quindi l'ho fatto cp .ssh/authorized_keys ~/home/otheraccout/.ssh/authorized_keys
ma non è stato d'aiuto. Non so dove altro cercare.
il mio 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
modificare:
drwx------ 2 deploy deploy 4096 Apr 20 06:00 .ssh
-rw------- 1 deploy deploy 820 Apr 20 05:35 authorized_keys
Edit2:
Come suggerito nei commenti /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]
Ho provato a fare sudo usermod --expiredate -1 deploy
ed è tornatono 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
) quando si tenta di accedere come deploy
utente?
passwd -u
. Può entrare come deploy
adesso, ma è davvero curioso del perché il mio chef stia creando utenti bloccati. Copia / incolla il tuo commento sopra come una risposta in modo che io possa darti credito
~/home/otheraccount/.ssh
dovrebbe avere700
e~/home/otheraccount/.ssh/authorized_keys
dovrebbe avere il600
permesso ed entrambi i file dovrebbero essere di proprietà diotheraccount