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

Azureの仮想マシンにVScodeからSSH接続する方法

Posted at

この記事について

本記事ではAzureでVMを作成した後、VScodeからSSH接続する方法の記録を残しています

手順

  1. 任意のAzure VMを作成する
  2. VMのプライベートキー「{VM名}.pem」をダウンロードし、~/.sshに配置
  3. VScodeの拡張機能「Remote-SSH(この拡張機能が含まれたパックへのリンク)」をインストールする
  4. ~/.ssh/configを下記の内容で作成
  5. VScodeのウィンドウ左下の緑のボタンから、接続を開始する
~/.ssh/config
Host {任意の名前}
    HostName {ホスト名}
    User {ログインユーザ名}
    IdentityFile {プライベートキーのパス}

※configファイルの詳細については下記の記事を参照

.ssh/configファイルでSSH接続を管理する
https://qiita.com/0084ken/items/2e4e9ae44ec5e01328f1

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