1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ターミナルからEC2インスタンスに.sshフォルダがないとエラーが出てまたSSHアクセスしようとするとPermission denied出て苦戦した

Posted at

はじめに

AWS学習の過程でEC2インスタンスにターミナルからアクセスするのに苦戦したので解決するまで記事に残します。

.sshフォルダがない

pemファイルをsshフォルダに移動しようとmv ~/Downloads/[ファイル名].pem ~/.sshを実行すると以下のエラーになった

zsh: no such user or named directory: .

解決方法

単純に.sshフォルダを作成してあげることで解決

mkdir ~/.ssh

再度mv ~/Downloads/[ファイル名].pem ~/.sshを実行すると移動できた

Permission denied (publickey,gssapi-keyex,gssapi-with-mic).のエラー

chmodで権限変更が完了し、いざEC2にアクセスしようとsshコマンドを実行すると以下エラーが発生

Warning: Identity file /Users/[ユーザー名]/.ssh/[ファイル名].pe, not accessible: No such file or directory.
ec2-user@[パブリックIPアドレス]: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).

色々エラー解決を試行錯誤していると単純にpemファイルの拡張子が.pemではなく.pe,になっていたことが原因と判明
原因のコマンド: ssh -i ~/.ssh/sample.pe, ec2-user@[パブリックIPアドレス]

正しく直してSSHアクセスすると


       __|  __|_  )
       _|  (     /   Amazon Linux 2 AMI
      ___|\___|___|

https://aws.amazon.com/amazon-linux-2/

無事にアクセス出来た

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?