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

MacでEC2にssh接続する

Last updated at Posted at 2021-02-06

###EC2側の設定

  • セキュリティのインバウンドルールにSSHの設定を追加する。

  • キーペアを作成して、ダウンロードする。

###Mac側

  • .sshフォルダにダウンロードしたpemファイルを格納する。
  • pemファイルの権限を400に変更
$ chmod 400 <証明書.pemのパス>
  • ホスト名の取得
    • EC2 インスタンスページのパブリックDNS名がホスト名にあたります。
  • 以下のコマンドを実行して、ssh接続する
$ ssh -i <証明書.pemのパス> ec2-user@<ホスト名>

###さらに楽に接続する方法

  • ~/.ssh/configファイルに接続設定を記述する
Host aws
 HostName       <ホスト名>
 IdentityFile   <証明書.pemの絶対パス>
 User           ec2-user
  • 以下のコマンドを実行
$ ssh aws
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?