【1】パスワードの設定
ec2-user、rootユーザーのパスワード変更
sudo passwd ec2-user
Changing password for user ec2-user.
New password:
Retype new password:
sudo passwd root
Changing password for user root.
New password:
Retype new password:
【2】パスワードログインの有効化
以下の通り、/etc/ssh/sshd_config
の以下パラメータを変更。
/etc/ssh/sshd_config
PasswordAuthentication yes
【3】設定反映
以下コマンドで設定反映。
sudo service sshd restart
【4】AMIイメージで設定を残す場合
以下の通り、/etc/cloud/cloud.cfg
の以下パラメータを変更。
/etc/cloud/cloud.cfg
ssh_pwauth: 1
以上