SSHサーバーのパスワード認証を禁止する方法
1.設定ファイルの編集
# vim /etc/ssh/sshd_config
修正前 PasswordAuthentication yes
修正後 PasswordAuthentication no
2.構成チェック
# sshd -t
3.設定反映
# service ssh restart
Coding Changes the World
1.設定ファイルの編集
# vim /etc/ssh/sshd_config
修正前 PasswordAuthentication yes
修正後 PasswordAuthentication no
2.構成チェック
# sshd -t
3.設定反映
# service ssh restart