Tôi đang cố gắng thiết lập quyền truy cập ssh cho tài khoản người dùng mà tôi đã tạo với đầu bếp trên máy chủ kỹ thuật số ub Ubuntu 12.04. Tôi đã có các tùy chọn được đặt trong đại dương kỹ thuật số để tự động sao chép khóa ssh của máy mac của tôi khi giọt được tạo.
Tôi có thể ssh trong root mà không có vấn đề gì, nhưng người dùng khác của tôi không xác thực được. đây có vẻ là một vấn đề phổ biến và tôi đã kiểm tra một số câu trả lời khác và tìm thấy lệnh này để có thêm thông tin:
ssh -vvv -i id_rsa user@serverIP
Nhật ký cho người dùng root (thành công) với lệnh đó là
gỡ lỗi
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).
người dùng không thành công:
gỡ lỗi
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.
Điều đó với tôi có nghĩa là khóa công khai không chính xác. Nhưng, nếu tôi đăng nhập với tư cách người dùng root và truy cập home/otheraccount/.ssh/authorized_keys
, tôi có thể thấy rằng khóa ssh của tôi ở đó. Tôi nghĩ có thể có lỗi, vì vậy tôi đã làm cp .ssh/authorized_keys ~/home/otheraccout/.ssh/authorized_keys
nhưng điều đó không có ích. Tôi không biết nơi nào khác để tìm.
tôi 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
biên tập:
drwx------ 2 deploy deploy 4096 Apr 20 06:00 .ssh
-rw------- 1 deploy deploy 820 Apr 20 05:35 authorized_keys
Chỉnh sửa2:
Theo đề xuất trong các ý kiến /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]
Tôi đã cố gắng làm sudo usermod --expiredate -1 deploy
và nó trở lạino 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
) khi bạn cố gắng đăng nhập như deploy
người dùng là gì?
passwd -u
. Có thể ssh vào như deploy
bây giờ, nhưng thực sự tò mò tại sao đầu bếp của tôi triển khai lại tạo ra người dùng bị khóa. Vui lòng sao chép / dán nhận xét của bạn ở trên dưới dạng câu trả lời để tôi có thể cung cấp cho bạn khoản tín dụng
~/home/otheraccount/.ssh
nên có700
và~/home/otheraccount/.ssh/authorized_keys
nên có sự600
cho phép và cả hai tập tin nên được sở hữu bởiotheraccount