AWSの新規インスタンスはrootユーザのパスワードが設定されていません。
root権限が必要な時に困らないように、最初に設定しておく必要があります。
EC2サーバーにログイン
1 |
$ ssh ec2-user@xxx.xxx.xxx.xxx -i hoge.pem |
パスワード変更
1 2 3 4 5 6 7 8 |
[ec2-user@ip-xxx-xxx-xxx-xxx ~]$ sudo su - Last failed login: Mon Aug 23 01:28:10 UTC 2021 on pts/0 There were 9 failed login attempts since the last successful login. [roo@ip-xxx-xxx-xxx-xxx ~]# passwd Changing password for user root. New password: Retype new password: passwd: all authentication tokens updated successfully. |