$ ssh -i aws-ssh-key.pem ec2-user@[IPaddress]
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for 'aws-ssh-key.pem' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
Load key "aws-ssh-key.pem": bad permissions
ec2-user@[IPaddress]: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
グーグル翻訳
'aws-ssh-key.pem'のパーミッション0644があまりにも開いています。
秘密鍵ファイルには他の人がアクセスできないようにする必要があります。
この秘密鍵は無視されます。
読み込みキー "aws-ssh-key.pem":不正なアクセス許可
ec2-user@[IPアドレス]:許可が拒否されました(publickey、gssapi-keyex、gssapi-with-mic)。
##結論
Permissions 0644 for 'aws-ssh-key.pem' are too open.
という文字通りアクセス権限
が問題。
なので、$ chmod 700 aws-ssh-key.pem
とすれば、問題解決。
$ ssh -i aws-ssh-key.pem ec2-user@[IPaddress]
__| __|_ )
_| ( / Amazon Linux 2 AMI
___|\___|___|
https://aws.amazon.com/amazon-linux-2/
8 package(s) needed for security, out of 79 available
Run "sudo yum update" to apply all updates.
[ec2-user@ip-10-0-1-10 ~]$