1
2

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.

VS codeからssh接続して、Amazon Linux2 にログインする

Last updated at Posted at 2021-07-24

VS codeの拡張機能を使って、
Amazon Linux2にログインするやり方があったので、ご紹介致します。
これにより、
ディレクトリなど、かなり見やすいので、おすすめです。

※なお、今回は既にEC2があることを前提としています。

インストール

VS codeで
remote ssh
などで検索し、

Remote - SSH

をインストールします。
スクリーンショット 2021-07-24 16.47.19.png

configの設定

コンソールを開いて
.sshのconfigに設定を入れます
(.sshの中にconfigがない場合は新規で作成してください)

/Users/{ユーザー名}/.ssh/config
Host { 任意の名称 : test }
  HostName { 作成したEC2のパブリック IPv4 アドレス : 11.11.11.11 }
  IdentityFile { キーペアのパス : /Users/{ユーザー名}/.ssh/test.pem }
  User ec2-user

VS codeで起動する

以下を押下します。
スクリーンショット 2021-07-24 16.59.41.png

Connect to Hostを押下します。
スクリーンショット 2021-07-24 17.03.03.png

すると、先ほど
configに設定した
Host名が表示されるので、
それを押下します。

スクリーンショット 2021-07-24 17.03.11.png

これで
VS codeで
Amazon Linux2 にログインできました。
openからディレクトリを開き、ターミナルを開けば、
かなり
見やすくなりました!!!!

スクリーンショット 2021-07-24 17.17.43.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?