私は公開鍵ベースのアクセスを許可するだけでしばらくDebianサーバーを運営してきました。残念ながら、秘密鍵を紛失して(バックアップなしで再インストールする)、システムにログインできなくなりました。ハードドライブにアクセスできるので、ハードドライブのデータを変更できます。 -fileを復元しましたがsshd_config
sshを介してログインしようとすると、エラーが発生します。
Authentications that can continue: publickey
sshd_config
パスワードベースのアクセスを再度有効にするには、-fileで何を有効にする必要がありますか?
sshd_config:
Port 234
Protocol 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
UsePrivilegeSeparation yes
KeyRegenerationInterval 3600
ServerKeyBits 768
SyslogFacility AUTH
LogLevel INFO
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
IgnoreRhosts yes
RhostsRSAAuthentication no
HostbasedAuthentication no
PermitEmptyPasswords yes
ChallengeResponseAuthentication no
X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
Banner /etc/issue.net
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
UsePAM no
答え1
vi /etc/ssh/sshd_config
次に、この行を次のように設定します。
PasswordAuthentication yes
オペレーティングシステムを起動すると、サービスが更新され、openssh設定が再ロードされます。