0
1

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 5 years have passed since last update.

awsにSSHする時のメモ

Posted at

#Macからaws上のインスタンスにsshしようとしたらちょこちょこ引っかかったのでメモ

※あとで清書する

・awsでEC2を建てた時のKeypairをダウンロードし、~/.sshディレクトリに保存
・インスタンスの設定でインバウンドの設定に注意
・ちなみに~/.sshはUser/<自分の名前>/.sshということらしい
・ただ、.sshは隠しフォルダなので、ls -aで-aオプションつけないと見れない
・次に、chmod 600 で制限をかける
・.ssh自体は700とかにしてあるはず?
・あとは(sudo) ssh -i <絶対パスのキーペア> ec2-user@で接続できるはず
・これを短い記述で呼べるようにするには、configファイルを編集する
・.ssh配下にtouch configでファイルを作り、以下を記述(open configで良い)

Host aws
HostName <hostname>
User ec2-user
IdentityFile /Users/<yourname>/.ssh/<keypair>

保存すると、ターミナルから

ssh aws

でsshできるようになる

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?