AWS RHEL8.6 EC2パスワード認証を設定する方法
環境
AWS
RHEL 8.6
操作方法
1.新規ユーザーを作成する
useradd arkuser
2.パスワードを設定する
passwd arkuser
3.sshd_configを設定する
vi /etc/ssh/sshd_config
修正前
PasswordAuthentication no
修正後
PasswordAuthentication yes
鍵認証を拒否する場合
keyAuthentication no
4.sudo権限を追加する
# visudo
arkuser ALL=(ALL) ALL
5.sshdを再起動してログインする
service sshd restart ssh arkuser@ec2-「IPアドレス」.「リージョン」.compute.amazonaws.com